Skip to content

Commit

Permalink
Fixed weird Fusion death
Browse files Browse the repository at this point in the history
  • Loading branch information
DodoBirby committed Jun 4, 2022
1 parent 5a9eda3 commit ff6f8cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Export_Code/gml_Object_oControl_Other_11.gml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
if (global.playerhealth <= 0 && global.saxmode && global.sax && oCharacter.sprite_index != sCoreXSAX)
global.playerhealth = 1
if (global.playerhealth >= 0)
if (global.playerhealth >= 0 && global.sax && global.saxmode)
exit
if (instance_exists(oClient) && oClient.connected)
{
Expand Down

0 comments on commit ff6f8cd

Please sign in to comment.