default to next when no command is given

当你学会命令行版如何操作以后,n 就绝对会是你用到最多的指令(除非开 at)
为了减少不必要的操作,把 n 设成了默认操作
不过不知道会不会让本来开 at 的玩家选择按住回车呢(笑
This commit is contained in:
Nathan Du
2021-09-21 21:35:55 +08:00
committed by 神戸小鳥
parent fa6aa9bc7d
commit 274290cc5b

View File

@@ -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':