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);
For free help or discussion join the Krews Discord here: https://discord.gg/MyYZpSs8mW
For paid help or add-ons/plugins, join the Krews Marketplace Discord here: https://discord.gg/ZMCUYGC2JG
Fixed packet data:
message.appendString(this.effectId + "");
message.appendInt(0);
to:
message.appendString("");
message.appendInt(1);
message.appendInt(this.effectId);