Skip to content

Commit

Permalink
died
Browse files Browse the repository at this point in the history
  • Loading branch information
LarryFrosty committed Sep 8, 2024
1 parent 1c664ad commit b05b3d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/psychlua/HScript.hx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class HScript extends Iris
}
catch(e:Dynamic)
{
Iris.error(ErrorSeverity.ERROR, e, hs.interp.posInfos());
Iris.error(e, hs.interp.posInfos());
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion source/states/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -3284,7 +3284,7 @@ class PlayState extends MusicBeatState
{
var newScript:HScript = cast (Iris.instances.get(file), HScript);
@:privateAccess
Iris.error(crowplexus.iris.ErrorSeverity.ERROR, e, (newScript.interp != null ? newScript.interp.posInfos() : Iris.getDefaultPos()));
Iris.error(e, (newScript.interp != null ? newScript.interp.posInfos() : Iris.getDefaultPos()));

if(newScript != null)
newScript.destroy();
Expand Down

0 comments on commit b05b3d1

Please sign in to comment.