mirror of
https://github.com/VickScarlet/lifeRestart.git
synced 2025-07-20 02:53:53 +08:00
default to next when no command is given
当你学会命令行版如何操作以后,n 就绝对会是你用到最多的指令(除非开 at) 为了减少不必要的操作,把 n 设成了默认操作 不过不知道会不会让本来开 at 的玩家选择按住回车呢(笑
This commit is contained in:
@@ -123,7 +123,8 @@ class App {
|
||||
|
||||
case 'n':
|
||||
case 'next':
|
||||
case '/next': return this.next(true);
|
||||
case '/next':
|
||||
case '': return this.next(true);
|
||||
|
||||
case 'a':
|
||||
case 'alloc':
|
||||
|
Reference in New Issue
Block a user