Renamed incoming event

This commit is contained in:
Remco 2021-01-10 23:10:15 +01:00
parent de7c51d78a
commit 40914b5050
3 changed files with 3 additions and 3 deletions

View File

@ -580,7 +580,7 @@ public class PacketManager {
this.registerHandler(Incoming.WiredTriggerSaveDataEvent, WiredTriggerSaveDataEvent.class);
this.registerHandler(Incoming.WiredEffectSaveDataEvent, WiredEffectSaveDataEvent.class);
this.registerHandler(Incoming.WiredConditionSaveDataEvent, WiredConditionSaveDataEvent.class);
this.registerHandler(Incoming.WiredEffectApplySetConditionsEvent, WiredApplySetConditionsEvent.class);
this.registerHandler(Incoming.WiredApplySetConditionsEvent, WiredApplySetConditionsEvent.class);
}
void registerUnknown() throws Exception {

View File

@ -155,7 +155,7 @@ public class Incoming {
public static final int RequestInventoryItemsEvent = 3150;
public static final int ModToolRoomAlertEvent = 3842;
public static final int WiredEffectSaveDataEvent = 2281;
public static final int WiredEffectApplySetConditionsEvent = 3373;
public static final int WiredApplySetConditionsEvent = 3373;
public static final int CheckPetNameEvent = 2109;
public static final int SecureLoginEvent = 2419;
public static final int BotSaveSettingsEvent = 2624;

View File

@ -21,7 +21,7 @@ public class WiredApplySetConditionsEvent extends MessageHandler {
public int getRatelimit() {
return 500;
}
@Override
public void handle() throws Exception {
int itemId = this.packet.readInt();