Skip to content
This repository was archived by the owner on Aug 5, 2025. It is now read-only.

Commit 6b5885c

Browse files
committed
shit
1 parent e8332c6 commit 6b5885c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

source/funkin/backend/system/MainState.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ class MainState extends FlxState {
135135
}
136136
}
137137

138-
if (!Flags.DISABLE_WARNING_SCREEN) FlxG.switchState(new funkin.menu.WarningState());
138+
if (!Flags.DISABLE_WARNING_SCREEN) FlxG.switchState(new funkin.menus.WarningState());
139139
else FlxG.switchState(new TitleState());
140140
}
141141
}

source/funkin/menus/WarningState.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class WarningState extends MusicBeatState {
1818

1919
disclaimer = new FunkinText(16, titleAlphabet.y + titleAlphabet.height + 10, FlxG.width - 32, "", 32);
2020
disclaimer.alignment = CENTER;
21-
disclaimer.text = "This is a warning state! Make a script #./data/states/WarningState.hx# to edit this text! \n\n Note: you can use * or # to highlight your text in red or yellow, or you can just make your own markup using postCreate";
21+
disclaimer.text = "This is a warning state! Make a script #./data/states/WarningState.hx# to edit this text! \n\n Note: you can use * or # to highlight your text in red or yellow, or you can just make your own markup using postCreate (you have to change the text in create() to apply the default markup)";
2222

2323
super.create();
2424

0 commit comments

Comments
 (0)