mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-26 15:11:30 +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(
|
||||
"{} {} {} {}",
|
||||
caster->GetID(),
|
||||
caster ? caster->GetID() : 0,
|
||||
buffs[buffslot].ticsremaining,
|
||||
caster->GetLevel(),
|
||||
caster ? caster->GetLevel() : 0,
|
||||
buffslot
|
||||
);
|
||||
|
||||
@ -3751,9 +3751,9 @@ void Mob::DoBuffTic(const Buffs_Struct &buff, int slot, Mob *caster)
|
||||
|
||||
std::string buf = fmt::format(
|
||||
"{} {} {} {}",
|
||||
caster->GetID(),
|
||||
caster ? caster->GetID() : 0,
|
||||
buffs[slot].ticsremaining,
|
||||
caster->GetLevel(),
|
||||
caster ? caster->GetLevel() : 0,
|
||||
slot
|
||||
);
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user