Refactor SPELL_REQUIRES_OFF_CENTCOM to SPELL_REQUIRES_STATION (#73348)

When I refactored stuff to use lazy templates it broke a few needed checks, this is one of those checks.
Although there is no reason this shouldn't have been checking for station level over not CC
This commit is contained in:
Zephyr
2023-02-12 20:49:22 +00:00
committed by GitHub
parent fcf30132b9
commit 5122fb07cb
8 changed files with 13 additions and 12 deletions
+2 -2
View File
@@ -977,8 +977,8 @@ GLOBAL_PROTECT(admin_verbs_poll)
real_reqs += "Must have a mind"
if(reqs & SPELL_REQUIRES_NO_ANTIMAGIC)
real_reqs += "Must have no antimagic"
if(reqs & SPELL_REQUIRES_OFF_CENTCOM)
real_reqs += "Must be off central command z-level"
if(reqs & SPELL_REQUIRES_STATION)
real_reqs += "Must be on the station z-level"
if(reqs & SPELL_REQUIRES_WIZARD_GARB)
real_reqs += "Must have wizard clothes"