mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 13:41:31 +00:00
[Logging] Fix log messages to final damage values (#2056)
This commit is contained in:
parent
b75741ff4e
commit
326dba6aeb
@ -5803,7 +5803,7 @@ void Client::Handle_OP_EnvDamage(const EQApplicationPacket *app)
|
|||||||
Chat::Red,
|
Chat::Red,
|
||||||
fmt::format(
|
fmt::format(
|
||||||
"Your GM status protects you from {} points of {} (Type {}) damage.",
|
"Your GM status protects you from {} points of {} (Type {}) damage.",
|
||||||
ed->damage,
|
damage,
|
||||||
EQ::constants::GetEnvironmentalDamageName(ed->dmgtype),
|
EQ::constants::GetEnvironmentalDamageName(ed->dmgtype),
|
||||||
ed->dmgtype
|
ed->dmgtype
|
||||||
).c_str()
|
).c_str()
|
||||||
@ -5815,7 +5815,7 @@ void Client::Handle_OP_EnvDamage(const EQApplicationPacket *app)
|
|||||||
Chat::Red,
|
Chat::Red,
|
||||||
fmt::format(
|
fmt::format(
|
||||||
"Your invulnerability protects you from {} points of {} (Type {}) damage.",
|
"Your invulnerability protects you from {} points of {} (Type {}) damage.",
|
||||||
ed->damage,
|
damage,
|
||||||
EQ::constants::GetEnvironmentalDamageName(ed->dmgtype),
|
EQ::constants::GetEnvironmentalDamageName(ed->dmgtype),
|
||||||
ed->dmgtype
|
ed->dmgtype
|
||||||
).c_str()
|
).c_str()
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user