Send bard effect stuff for RoF2

Server side we still use the old system
Servers will need to update their items, PEQ's DB appears fine

RoF2 wasn't show anything, so we have to send it for them
This commit is contained in:
Michael Cook (mackal)
2015-02-16 15:40:44 -05:00
parent 28be3b87b7
commit b48a712887
2 changed files with 5 additions and 4 deletions
+4 -4
View File
@@ -5554,10 +5554,10 @@ namespace RoF2
RoF2::structs::WornEffectStruct ibes;
memset(&ibes, 0, sizeof(RoF2::structs::WornEffectStruct));
ibes.effect = 0xffffffff;
ibes.level2 = 0;
ibes.type = 0;
ibes.level = 0;
ibes.effect = item->Bard.Effect;
ibes.level2 = item->Bard.Level2;
ibes.type = item->Bard.Type;
ibes.level = item->Bard.Level;
//ibes.unknown6 = 0xffffffff;
ss.write((const char*)&ibes, sizeof(RoF2::structs::WornEffectStruct));