minor fix to a fix

This commit is contained in:
Colton Rushton 2021-02-16 01:13:33 -04:00
parent 0b20818167
commit c28b7b2b19
1 changed files with 1 additions and 1 deletions

View File

@ -1755,7 +1755,7 @@ static void cur_obj_update_floor(void) {
else if (floor->type == SURFACE_DEATH_PLANE) {
//! This misses SURFACE_VERTICAL_WIND (and maybe SURFACE_WARP)
#else
else if (floor->type == SURFACE_DEATH_PLANE || floor->type == SURFACE_VERTICAL_WIND || SURFACE_WARP) {
else if (floor->type == SURFACE_DEATH_PLANE || floor->type == SURFACE_VERTICAL_WIND || floor->type == SURFACE_WARP) {
#endif
o->oMoveFlags |= OBJ_MOVE_ABOVE_DEATH_BARRIER;
}