Fix trophies breaking wired

This commit is contained in:
Beny 2020-11-15 22:43:32 +01:00
parent 912d06b44b
commit 840dd426d3

View File

@ -13,4 +13,9 @@ public class InteractionTrophy extends InteractionDefault {
public InteractionTrophy(int id, int userId, Item item, String extradata, int limitedStack, int limitedSells) {
super(id, userId, item, extradata, limitedStack, limitedSells);
}
@Override
public boolean allowWiredResetState() {
return false;
}
}