diff --git a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/Game.java b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/Game.java index 6ea8c08cd..2faf9dcd5 100644 --- a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/Game.java +++ b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/Game.java @@ -185,7 +185,7 @@ public abstract class Game implements Listener public GameOptionHashInt BlockPlaceAllow = new GameOptionHashInt(new HashSet(), "Block Place Allow", "Set of blocks players can place"); public GameOptionHashInt BlockPlaceDeny = new GameOptionHashInt(new HashSet(), "Block Place Deny", "Set of blocks players cannot place"); - public boolean ItemPickup = false; + public GameOptionBoolean ItemPickup = new GameOptionBoolean(false, "Item Pickup", "Are there items to pickup?"); public HashSet ItemPickupAllow = new HashSet(); public HashSet ItemPickupDeny = new HashSet();