Skip to content

Commit

Permalink
Merge branch 'FNF-CNE-Devs:main' into cne-pr
Browse files Browse the repository at this point in the history
  • Loading branch information
mcagabe19 authored Dec 2, 2024
2 parents 05d175c + 83cf69b commit e6c7deb
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion source/funkin/backend/MusicBeatState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ class MusicBeatState extends FlxState implements IBeatReceiver

public var scriptsAllowed:Bool = true;

public static var lastScriptName:String = null;
public static var lastStateName:String = null;

public var scriptName:String = null;

public static var skipTransOut:Bool = false;
Expand Down Expand Up @@ -220,7 +223,12 @@ class MusicBeatState extends FlxState implements IBeatReceiver
public function new(scriptsAllowed:Bool = true, ?scriptName:String) {
super();
this.scriptsAllowed = #if SOFTCODED_STATES scriptsAllowed #else false #end;
this.scriptName = scriptName;

if(lastStateName != (lastStateName = Type.getClassName(Type.getClass(this)))) {
lastScriptName = null;
}
this.scriptName = scriptName != null ? scriptName : lastScriptName;
lastScriptName = this.scriptName;
}

function loadScript() {
Expand Down

0 comments on commit e6c7deb

Please sign in to comment.