mirror of
https://github.com/IvarK/AntimatterDimensionsSourceCode.git
synced 2024-11-22 04:05:42 +00:00
parent
2808e5060e
commit
a074a94c12
@ -29,7 +29,14 @@ GameKeyboard.bindRepeatableHotkey("e", () => eternity());
|
||||
|
||||
GameKeyboard.bindHotkey("a", () => Autobuyers.toggle());
|
||||
GameKeyboard.bindHotkey("b", () => BlackHoles.togglePause());
|
||||
GameKeyboard.bindHotkey("u", () => automatorOnOff());
|
||||
GameKeyboard.bindHotkey("u", () => {
|
||||
if (AutomatorBackend.isRunning) {
|
||||
AutomatorBackend.pause();
|
||||
}
|
||||
else if (AutomatorBackend.isOn) {
|
||||
AutomatorBackend.mode = AutomatorMode.RUN;
|
||||
}
|
||||
});
|
||||
|
||||
GameKeyboard.bindHotkey("esc", () => {
|
||||
if (Modal.isOpen) {
|
||||
|
Loading…
Reference in New Issue
Block a user