Fix thrown items colliding with non-hard entities (#8243)

* Fix pies colliding with non-hard(puddles)

* Fix thrown items colliding with tables
This commit is contained in:
Jacob Tong
2022-05-17 19:24:58 -07:00
committed by GitHub
parent b848b5167d
commit f7363df19e
2 changed files with 5 additions and 2 deletions

View File

@@ -65,7 +65,7 @@ public enum CollisionGroup
// Soap, spills
SlipLayer = MidImpassable | LowImpassable,
ItemMask = Impassable | HighImpassable,
ThrownItem = Impassable | HighImpassable,
ThrownItem = Impassable | HighImpassable | BulletImpassable,
WallLayer = Opaque | Impassable | HighImpassable | MidImpassable | LowImpassable | BulletImpassable | InteractImpassable,
GlassLayer = Impassable | HighImpassable | MidImpassable | LowImpassable | BulletImpassable | InteractImpassable,
HalfWallLayer = MidImpassable | LowImpassable,