mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-28 06:53:29 +00:00
Duke: fixed breakable ceilings.
This commit is contained in:
parent
8aa34eea7b
commit
62c471e225
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