[Spells] Added IsNightTime() for Dance of the Fireflies (#3667)

* Added IsNightOnly for Dance of the Fireflies spell which should only be cast at night from 7pm to 4pm.

* Update to include IsDayTime and replace magic numbers.
This commit is contained in:
regneq
2023-11-04 10:58:08 -07:00
committed by GitHub
parent d25cc35f1b
commit 1420983700
5 changed files with 45 additions and 0 deletions
+7
View File
@@ -1052,4 +1052,11 @@ enum ScribeSpellActions
Unmemorize
};
enum SpellTimeRestrictions
{
NoRestriction,
Day,
Night
};
#endif /*COMMON_EQ_CONSTANTS_H*/