Core/Guild: Implemented guild master dethrone
This commit is contained in:
@@ -2448,7 +2448,7 @@ namespace Game.Entities
|
||||
if (vItem.maxcount == 0)
|
||||
return 0;
|
||||
|
||||
VendorItemCount vCount = null; ;
|
||||
VendorItemCount vCount = null;
|
||||
for (var i = 0; i < m_vendorItemCounts.Count; i++)
|
||||
{
|
||||
vCount = m_vendorItemCounts[i];
|
||||
|
||||
@@ -4759,7 +4759,7 @@ namespace Game.Entities
|
||||
if ((pvp && WorldConfig.GetBoolValue(WorldCfg.DeathCorpseReclaimDelayPvp)) ||
|
||||
(!pvp && WorldConfig.GetBoolValue(WorldCfg.DeathCorpseReclaimDelayPve)))
|
||||
{
|
||||
count = (ulong)(m_deathExpireTime - corpse.GetGhostTime()) / PlayerConst.DeathExpireStep; ;
|
||||
count = (ulong)(m_deathExpireTime - corpse.GetGhostTime()) / PlayerConst.DeathExpireStep;
|
||||
|
||||
if (count >= PlayerConst.MaxDeathCount)
|
||||
count = PlayerConst.MaxDeathCount - 1;
|
||||
|
||||
Reference in New Issue
Block a user