mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-13 18:51:29 +00:00
Added cap to Titanium BaneDmgAmt translator
This commit is contained in:
parent
c6c4480061
commit
4d1d9df05d
@ -2303,7 +2303,10 @@ namespace Titanium
|
|||||||
ob << '|' << itoa(item->SkillModType);
|
ob << '|' << itoa(item->SkillModType);
|
||||||
|
|
||||||
ob << '|' << itoa(item->BaneDmgRace);
|
ob << '|' << itoa(item->BaneDmgRace);
|
||||||
ob << '|' << itoa(item->BaneDmgAmt);
|
if (item->BaneDmgAmt > 255)
|
||||||
|
ob << '|' << "255";
|
||||||
|
else
|
||||||
|
ob << '|' << itoa(item->BaneDmgAmt);
|
||||||
ob << '|' << itoa(item->BaneDmgBody);
|
ob << '|' << itoa(item->BaneDmgBody);
|
||||||
|
|
||||||
ob << '|' << itoa(item->Magic);
|
ob << '|' << itoa(item->Magic);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user