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

21 lines
665 B
Java
Raw Normal View History

2019-05-16 15:56:20 +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 InteractionRedeemableSubscriptionBox extends InteractionCrackable {
public InteractionRedeemableSubscriptionBox(ResultSet set, Item baseItem) throws SQLException {
super(set, baseItem);
}
public InteractionRedeemableSubscriptionBox(int id, int userId, Item item, String extradata, int limitedStack, int limitedSells) {
super(id, userId, item, extradata, limitedStack, limitedSells);
}
public boolean userRequiredToBeAdjacent() {
return false;
}
}