mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-10-21 00:47:40 +00:00
crossbow:: crossbow moves are no longer considered valid moves for the checkmate rule when the crossbow is not loaded
This commit is contained in:
@@ -338,7 +338,7 @@ EX void checkmove() {
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if(!canmove && bow::crossbow_mode()) canmove = bow::have_bow_target();
|
if(!canmove && bow::crossbow_mode() && !items[itCrossbow]) canmove = bow::have_bow_target();
|
||||||
|
|
||||||
if(!canmove) {
|
if(!canmove) {
|
||||||
achievement_final(true);
|
achievement_final(true);
|
||||||
|
Reference in New Issue
Block a user