Fix crackable wall item issue

This commit is contained in:
Snaiker 2022-01-27 12:08:51 +00:00
parent 20120ea6bb
commit 7b882fd8e7

View File

@ -1,6 +1,7 @@
package com.eu.habbo.threading.runnables; package com.eu.habbo.threading.runnables;
import com.eu.habbo.Emulator; import com.eu.habbo.Emulator;
import com.eu.habbo.habbohotel.items.FurnitureType;
import com.eu.habbo.habbohotel.items.Item; import com.eu.habbo.habbohotel.items.Item;
import com.eu.habbo.habbohotel.items.interactions.InteractionCrackable; import com.eu.habbo.habbohotel.items.interactions.InteractionCrackable;
import com.eu.habbo.habbohotel.rooms.Room; import com.eu.habbo.habbohotel.rooms.Room;
@ -34,7 +35,7 @@ public class CrackableExplode implements Runnable {
if (this.habboItem.getRoomId() == 0) { if (this.habboItem.getRoomId() == 0) {
return; return;
} }
//MAKING DINNER BRB
if (!this.habboItem.resetable()) { if (!this.habboItem.resetable()) {
this.room.removeHabboItem(this.habboItem); this.room.removeHabboItem(this.habboItem);
this.room.sendComposer(new RemoveFloorItemComposer(this.habboItem, true).compose()); this.room.sendComposer(new RemoveFloorItemComposer(this.habboItem, true).compose());
@ -43,13 +44,15 @@ public class CrackableExplode implements Runnable {
} else { } else {
this.habboItem.reset(this.room); this.habboItem.reset(this.room);
} }
Item rewardItem = Emulator.getGameEnvironment().getItemManager().getCrackableReward(this.habboItem.getBaseItem().getId()); Item rewardItem = Emulator.getGameEnvironment().getItemManager().getCrackableReward(this.habboItem.getBaseItem().getId());
if (rewardItem != null) { if (rewardItem != null) {
HabboItem newItem = Emulator.getGameEnvironment().getItemManager().createItem(this.habboItem.allowAnyone() ? this.habbo.getHabboInfo().getId() : this.habboItem.getUserId(), rewardItem, 0, 0, ""); HabboItem newItem = Emulator.getGameEnvironment().getItemManager().createItem(this.habboItem.allowAnyone() ? this.habbo.getHabboInfo().getId() : this.habboItem.getUserId(), rewardItem, 0, 0, "");
if (newItem != null) { if (newItem != null) {
if (this.toInventory) { //Add to inventory in case if isn't possible place the item or in case is wall item
if (this.toInventory || newItem.getBaseItem().getType() == FurnitureType.WALL) {
this.habbo.getInventory().getItemsComponent().addItem(newItem); this.habbo.getInventory().getItemsComponent().addItem(newItem);
this.habbo.getClient().sendResponse(new AddHabboItemComposer(newItem)); this.habbo.getClient().sendResponse(new AddHabboItemComposer(newItem));
this.habbo.getClient().sendResponse(new InventoryRefreshComposer()); this.habbo.getClient().sendResponse(new InventoryRefreshComposer());
@ -66,7 +69,6 @@ public class CrackableExplode implements Runnable {
} }
} }
this.room.updateTile(this.room.getLayout().getTile(this.x, this.y)); this.room.updateTile(this.room.getLayout().getTile(this.x, this.y));
} }
} }