mirror of
https://github.com/EQEmu/Server.git
synced 2026-01-06 09:23:52 +00:00
parent
81e7cf5a32
commit
657cbbcabe
@ -163,9 +163,9 @@ bool Mob::SpellEffect(Mob* caster, uint16 spell_id, float partial, int level_ove
|
|||||||
|
|
||||||
std::string buf = fmt::format(
|
std::string buf = fmt::format(
|
||||||
"{} {} {} {}",
|
"{} {} {} {}",
|
||||||
caster->GetID(),
|
caster ? caster->GetID() : 0,
|
||||||
buffs[buffslot].ticsremaining,
|
buffs[buffslot].ticsremaining,
|
||||||
caster->GetLevel(),
|
caster ? caster->GetLevel() : 0,
|
||||||
buffslot
|
buffslot
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -3751,9 +3751,9 @@ void Mob::DoBuffTic(const Buffs_Struct &buff, int slot, Mob *caster)
|
|||||||
|
|
||||||
std::string buf = fmt::format(
|
std::string buf = fmt::format(
|
||||||
"{} {} {} {}",
|
"{} {} {} {}",
|
||||||
caster->GetID(),
|
caster ? caster->GetID() : 0,
|
||||||
buffs[slot].ticsremaining,
|
buffs[slot].ticsremaining,
|
||||||
caster->GetLevel(),
|
caster ? caster->GetLevel() : 0,
|
||||||
slot
|
slot
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user