mirror of
https://github.com/ZDoom/Raze.git
synced 2025-01-21 08:01:03 +00:00
Duke: fixed breakable ceilings.
This commit is contained in:
parent
1b6454dc5b
commit
8545a2e74d
1 changed files with 1 additions and 1 deletions
|
@ -1333,7 +1333,7 @@ void checkhitwall(DDukeActor* spr, walltype* wal, const DVector3& pos)
|
|||
bool checkhitceiling(sectortype* sectp)
|
||||
{
|
||||
auto data = breakCeilingMap.CheckKey(sectp->ceilingtexture.GetIndex());
|
||||
if (data && !(data->flags & 1))
|
||||
if (data)
|
||||
{
|
||||
if (!data->handler)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue