1
0
Fork 0
mirror of https://codeberg.org/noisytoot/notnotdnethack.git synced 2025-07-28 16:32:27 +01:00

Bugfix: Missing default cases causes an unexitable menu.

This commit is contained in:
chris 2022-07-07 13:55:21 -04:00
parent fde95e6868
commit f64f82a6bf

View file

@ -130,6 +130,8 @@ doattributes()
case DOATTRIB_SPIRITS:
spirits_enlightenment();
break;
default:
return MOVE_INSTANT;
}
}
return MOVE_INSTANT;