mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-02-05 03:00:27 +00:00
Change crash keybind to Ctrl-Alt-Shift-L
This commit is contained in:
parent
f1c1e63375
commit
378179d1f7
|
@ -362,6 +362,7 @@ class MainMenuState extends MusicBeatState
|
||||||
// Ctrl+Alt+Shift+R = Score/Rank conflict test
|
// Ctrl+Alt+Shift+R = Score/Rank conflict test
|
||||||
// Ctrl+Alt+Shift+N = Mark all characters as not seen
|
// Ctrl+Alt+Shift+N = Mark all characters as not seen
|
||||||
// Ctrl+Alt+Shift+E = Dump save data
|
// Ctrl+Alt+Shift+E = Dump save data
|
||||||
|
// Ctrl+Alt+Shift+L = Force crash and create a log dump
|
||||||
|
|
||||||
if (FlxG.keys.pressed.CONTROL && FlxG.keys.pressed.ALT && FlxG.keys.pressed.SHIFT && FlxG.keys.justPressed.P)
|
if (FlxG.keys.pressed.CONTROL && FlxG.keys.pressed.ALT && FlxG.keys.pressed.SHIFT && FlxG.keys.justPressed.P)
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,8 +22,8 @@ class ForceCrashPlugin extends FlxBasic
|
||||||
{
|
{
|
||||||
super.update(elapsed);
|
super.update(elapsed);
|
||||||
|
|
||||||
// Ctrl + Shift + L = Crash the game for debugging purposes
|
// Ctrl + Alt + Shift + L = Crash the game for debugging purposes
|
||||||
if (FlxG.keys.pressed.CONTROL && FlxG.keys.pressed.SHIFT && FlxG.keys.pressed.L)
|
if (FlxG.keys.pressed.CONTROL && FlxG.keys.pressed.ALT && FlxG.keys.pressed.SHIFT && FlxG.keys.pressed.L)
|
||||||
{
|
{
|
||||||
// TODO: Make this message 87% funnier.
|
// TODO: Make this message 87% funnier.
|
||||||
throw "DEBUG: Crashing the game via debug keybind!";
|
throw "DEBUG: Crashing the game via debug keybind!";
|
||||||
|
|
Loading…
Reference in a new issue