File tree Expand file tree Collapse file tree 4 files changed +5
-18
lines changed Expand file tree Collapse file tree 4 files changed +5
-18
lines changed Original file line number Diff line number Diff line change @@ -187,7 +187,6 @@ class ClientPrefs { //default settings if it can't find a save file containing y
187187
188188 // Misc
189189 public static var JSEngineRecharts : Bool = false ;
190- public static var SAM : Bool = false ;
191190 public static var alwaysTriggerCutscene : Bool = false ;
192191 public static var disableSplash : Bool = false ;
193192 public static var rainbowTime : Float = 5.0 ;
Original file line number Diff line number Diff line change @@ -228,15 +228,10 @@ class FunkinLua {
228228 set (' scriptName' , scriptName );
229229 set (' currentModDirectory' , Paths .currentModDirectory );
230230
231- // breaking the fourth wall shit
232- if (ClientPrefs .SAM ) {
233- set (' user_path' , ' Boyfriend.dat' );
234- set (" user_name" , " Boyfriend" ); // usable for things like Exploitation
235- }
236- else {
237- set (' user_path' , CoolSystemStuff .getUserPath );
238- set (" user_name" , CoolSystemStuff .getUsername );
239- }
231+ // If you don't want this to show, you can use the lua script to change it
232+ set (' user_path' , CoolSystemStuff .getUserPath ());
233+ set (" user_name" , CoolSystemStuff .getUsername ());
234+
240235 #if windows
241236 set (' buildTarget' , ' windows' );
242237 #elseif linux
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ class MainMenuState extends MusicBeatState
2626{
2727 public static final gitCommit : String = HaxeCommit .getGitCommitHash ();
2828
29- public static var psychEngineJSVersionNumber : String = ' 1.44.1 ' ; // This is also used for Discord RPC
29+ public static var psychEngineJSVersionNumber : String = ' 1.44.2 ' ; // This is also used for Discord RPC
3030 public static var psychEngineJSVersion : String = psychEngineJSVersionNumber #if commit + ' (Commit $gitCommit )' #end; // This is also used for Discord RPC
3131 public static var psychEngineVersion : String = ' 0.6.3' ; // This is also used for Discord RPC
3232 public static var curSelected : Int = 0 ;
Original file line number Diff line number Diff line change @@ -38,13 +38,6 @@ class MiscSettingsSubState extends BaseOptionsMenu
3838 false ); // Default value
3939 addOption (option );
4040
41- var option : Option = new Option (' Self Awareness Mode' , // Name
42- ' If checked, the two lua user functions doesnt take your username/userpath' , // Description
43- ' SAM' , // Save data variable name
44- ' bool' , // Variable type
45- false ); // Default value
46- addOption (option );
47-
4841 var option : Option = new Option (' Always Play Cutscenes' , // Name
4942 ' If checked, cutscenes will always play even if you\n enter the song through Freeplay.' , // Description
5043 ' alwaysTriggerCutscene' , // Save data variable name
You can’t perform that action at this time.
0 commit comments