mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- respect FF_INVERTSECTOR when checking a 3D floor's terrain.
This commit is contained in:
parent
2b59a35e84
commit
3fea074d35
1 changed files with 1 additions and 1 deletions
|
@ -349,7 +349,7 @@ void P_PlayerOnSpecial3DFloor(player_t* player)
|
|||
|
||||
// Apply flat specials (using the ceiling!)
|
||||
P_PlayerOnSpecialFlat(
|
||||
player, TerrainTypes[rover->model->GetTexture(sector_t::ceiling)]);
|
||||
player, TerrainTypes[rover->model->GetTexture(rover->flags & FF_INVERTSECTOR? sector_t::floor : sector_t::ceiling)]);
|
||||
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue