mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-22 23:10:52 +01:00
Revert "Temp patch to CatalogBuyItemEvent"
This reverts commit 4c16c25508
This commit is contained in:
parent
f9642879e2
commit
4a84258f3e
@ -5,7 +5,10 @@ import com.eu.habbo.habbohotel.catalog.CatalogItem;
|
||||
import com.eu.habbo.habbohotel.catalog.CatalogManager;
|
||||
import com.eu.habbo.habbohotel.catalog.CatalogPage;
|
||||
import com.eu.habbo.habbohotel.catalog.ClubOffer;
|
||||
import com.eu.habbo.habbohotel.catalog.layouts.*;
|
||||
import com.eu.habbo.habbohotel.catalog.layouts.ClubBuyLayout;
|
||||
import com.eu.habbo.habbohotel.catalog.layouts.RecentPurchasesLayout;
|
||||
import com.eu.habbo.habbohotel.catalog.layouts.RoomBundleLayout;
|
||||
import com.eu.habbo.habbohotel.catalog.layouts.VipBuyLayout;
|
||||
import com.eu.habbo.habbohotel.items.FurnitureType;
|
||||
import com.eu.habbo.habbohotel.users.HabboBadge;
|
||||
import com.eu.habbo.habbohotel.users.HabboInventory;
|
||||
@ -21,7 +24,6 @@ import com.eu.habbo.messages.outgoing.users.*;
|
||||
import com.eu.habbo.threading.runnables.ShutdownEmulator;
|
||||
import gnu.trove.map.hash.THashMap;
|
||||
import gnu.trove.procedure.TObjectProcedure;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
|
||||
public class CatalogBuyItemEvent extends MessageHandler {
|
||||
@Override
|
||||
@ -188,14 +190,7 @@ public class CatalogBuyItemEvent extends MessageHandler {
|
||||
item = this.client.getHabbo().getHabboStats().getRecentPurchases().get(itemId);
|
||||
else
|
||||
item = page.getCatalogItem(itemId);
|
||||
|
||||
// temp patch, can a dev with better knowledge than me look into this asap pls.
|
||||
if (page instanceof PetsLayout) {
|
||||
String check = extraData.replace("\n", "");
|
||||
if (!StringUtils.isAlphanumeric(check)) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
Emulator.getGameEnvironment().getCatalogManager().purchaseItem(page, item, this.client.getHabbo(), count, extraData, false);
|
||||
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user