mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-02 17:57:59 +03:00
Don't reject top collision if there's diagonal step nearby
This commit is contained in:
parent
644dd3d18b
commit
a9dd7c7f28
1 changed files with 1 additions and 1 deletions
|
@ -1747,7 +1747,7 @@ void GetCollisionInfo(COLL_INFO* coll, ITEM_INFO* item, PHD_VECTOR offset, bool
|
|||
|
||||
}
|
||||
}
|
||||
coll->CollisionType = CT_FRONT;
|
||||
coll->CollisionType = (coll->CollisionType == CT_TOP ? CT_TOP_FRONT : CT_FRONT);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue