Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/items/interactions/InteractionTrophy.java

22 lines
616 B
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.habbohotel.items.interactions;
import com.eu.habbo.habbohotel.items.Item;
import java.sql.ResultSet;
import java.sql.SQLException;
public class InteractionTrophy extends InteractionDefault {
2019-05-26 20:14:53 +02:00
public InteractionTrophy(ResultSet set, Item baseItem) throws SQLException {
2018-07-06 15:30:00 +02:00
super(set, baseItem);
}
2019-05-26 20:14:53 +02:00
public InteractionTrophy(int id, int userId, Item item, String extradata, int limitedStack, int limitedSells) {
2018-07-06 15:30:00 +02:00
super(id, userId, item, extradata, limitedStack, limitedSells);
}
2020-11-15 22:43:32 +01:00
@Override
public boolean allowWiredResetState() {
return false;
}
2018-07-06 15:30:00 +02:00
}