diff --git a/CHANGELOG.md b/CHANGELOG.md index f4f39b329..990e8c8e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,9 @@ ### Bugfixes * Do not composite signage VTFs with PeTI backgrounds. * Fix signage not exporting if the UI was not opened at least once before exporting. +* BEEmod/BEE2-items#4252: Correctly check orientation of Tag Fizzlers. +* Display the absolute location of the package location if empty. +* Handle unparsable existing antigel materials gracefully. ------------------------------------------ diff --git a/src/precomp/conditions/apTag.py b/src/precomp/conditions/apTag.py index af933f74d..08797dc46 100644 --- a/src/precomp/conditions/apTag.py +++ b/src/precomp/conditions/apTag.py @@ -257,7 +257,7 @@ def make_tag_fizz(inst: Entity) -> None: blue_loc = loc oran_loc = loc - if inst_normal.z != 0: + if abs(inst_normal.z) > 0.5: # If on floors/ceilings, rotate to point at the fizzler! sign_floor_loc = sign_loc.copy() sign_floor_loc.z = 0 # We don't care about z-positions.