Skip to content

Commit

Permalink
fix: observe the WISH attribute for tower monsters (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
midgleyc committed Apr 29, 2024
1 parent b60cd00 commit a11d09f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/excavator-projects/projects/genie.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,7 @@ function spadeGenie(page: string) {

if (monster === Monster.none) return null;

const wishable =
!monster.boss &&
monster.copyable &&
!monster.attributes.includes("NOWISH");
const wishable = monster.wishable;

if (wishable === success) return null;

Expand Down

0 comments on commit a11d09f

Please sign in to comment.