Skip to content

Commit

Permalink
Fix BEEmod/BEE2-items#4252: Correctly check orientation of Tag Fizzlers
Browse files Browse the repository at this point in the history
  • Loading branch information
TeamSpen210 committed Nov 16, 2022
1 parent 1929ba3 commit 009f1bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/precomp/conditions/apTag.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 009f1bb

Please sign in to comment.