Skip to content

fix #3137: WiredConditionActorIsWearingEffect packet is wrong

Fixed packet data:

message.appendString(this.effectId + "");
message.appendInt(0);

to:

message.appendString("");
message.appendInt(1);
message.appendInt(this.effectId);

Merge request reports

Loading