You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/archipelago/APPlayState.hx
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1803,7 +1803,11 @@ public function doEffect(effect:String)
1803
1803
if (deathLinkPacket.cause!=null&& (deathLinkPacket.cause!=""||deathLinkPacket.cause!="")) cause=deathLinkPacket.cause+"\n[pause:0.5](Sounds like a skill issue...)";
1804
1804
}
1805
1805
catch(e) {trace('DEATHLINKPACK WAS NULL!');}
1806
-
if (cause.trim() =="") cause=deathLinkPacket.source+" has died.\n[pause:0.5](How Unfortunate...)";
1806
+
try {
1807
+
if (cause.trim() =="") cause=deathLinkPacket.source+" has died.\n[pause:0.5](How Unfortunate...)";
0 commit comments