mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-19 13:28:25 +00:00
[Rule] Mounts will wear off on zone (#3865)
* [Rule] Mounts will wear off on zone Allows server admins to toggle if they want to prevent players from retaining mounts on zone. false is default to maintain current feature set. * Added Date for mount zoning added
This commit is contained in:
@@ -681,8 +681,11 @@ void Client::CompleteConnect()
|
||||
break;
|
||||
}
|
||||
case SE_SummonHorse: {
|
||||
SummonHorse(buffs[j1].spellid);
|
||||
//hasmount = true; //this was false, is that the correct thing?
|
||||
if (RuleB(Character, PreventMountsFromZoning)) {
|
||||
BuffFadeByEffect(SE_SummonHorse);
|
||||
} else {
|
||||
SummonHorse(buffs[j1].spellid);
|
||||
}
|
||||
break;
|
||||
}
|
||||
case SE_Silence:
|
||||
|
||||
Reference in New Issue
Block a user