fix #3137: WiredConditionActorIsWearingEffect packet is wrong
requested to merge kybern/Arcturus-Community:fix-3137-wiredconditionactoriswearingeffect-packet-is-wrong into dev
Fixed packet data:
message.appendString(this.effectId + "");
message.appendInt(0);
to:
message.appendString("");
message.appendInt(1);
message.appendInt(this.effectId);