Revert "Added constants and cleaned up #weather command"

This reverts commit 2ec85304b7.
This commit is contained in:
Kinglykrab
2022-10-13 17:52:01 -04:00
parent 2ec85304b7
commit 76f4e411b6
9 changed files with 143 additions and 287 deletions
+2 -2
View File
@@ -249,8 +249,8 @@ public:
uint32 GetCurrencyID(uint32 item_id);
uint32 GetCurrencyItemID(uint32 currency_id);
inline bool IsRaining() { return zone_weather == EQ::constants::WeatherTypes::Raining; }
inline bool IsSnowing() { return zone_weather == EQ::constants::WeatherTypes::Snowing; }
inline bool IsRaining() { return zone_weather == 1; }
inline bool IsSnowing() { return zone_weather == 2; }
std::string GetZoneDescription();
void SendReloadMessage(std::string reload_type);