Rules Global Expansion Flag

Partial code for Issue 
This commit is contained in:
Image 2020-05-07 23:50:08 -04:00
parent 8d06858971
commit 29a98cfcb5
2 changed files with 7 additions and 2 deletions
EQ2/source/WorldServer/Rules

View file

@ -292,6 +292,8 @@ RuleManager::RuleManager() {
RULE_INIT(R_Spells, NoInterruptBaseChance, "50");
RULE_INIT(R_Expansion, GlobalExpansionFlag, "0");
#undef RULE_INIT
}

View file

@ -39,7 +39,8 @@ enum RuleCategory {
R_World,
R_Zone,
R_Loot,
R_Spells
R_Spells,
R_Expansion
};
enum RuleType {
@ -158,7 +159,9 @@ enum RuleType {
ClientSaveTimer,
DefaultZoneShutdownTimer,
WeatherTimer,
SpawnDeleteTimer
SpawnDeleteTimer,
GlobalExpansionFlag
};
class Rule {