mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-10-19 16:07: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
|
||||
|
||||
if(!canmove && bow::crossbow_mode()) canmove = bow::have_bow_target();
|
||||
if(!canmove && bow::crossbow_mode() && !items[itCrossbow]) canmove = bow::have_bow_target();
|
||||
|
||||
if(!canmove) {
|
||||
achievement_final(true);
|
||||
|
Reference in New Issue
Block a user