From eb6c38593627f55500bc9af12b57bb9b62c37396 Mon Sep 17 00:00:00 2001 From: Joseph Prezioso Jr Date: Thu, 24 Mar 2016 17:52:02 -0400 Subject: [PATCH] More flags changed --- .../src/nautilus/game/arcade/game/Game.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();