1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-18 15:00:26 +00:00

fixed a YASC code bug

This commit is contained in:
Zeno Rogue 2021-05-27 12:58:50 +02:00
parent 4cdadea45f
commit 990b544e7f

View File

@ -309,7 +309,7 @@ EX void checkmove() {
check_if_monster();
move_issues[cwt.spin] = checked_move_issue;
if(!legalmoves[cwt.spin]) {
if(movepcto(1, 1, true)) {
if(movepcto(0, 1, true)) {
canmove = legalmoves[cwt.spin] = true;
}
check_if_monster();