From d8eeb79b63c017b8d07910341270403158ace221 Mon Sep 17 00:00:00 2001 From: Anuken Date: Tue, 30 Apr 2019 12:29:19 -0400 Subject: [PATCH] Un-debugged content --- core/src/io/anuke/mindustry/game/GlobalData.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/io/anuke/mindustry/game/GlobalData.java b/core/src/io/anuke/mindustry/game/GlobalData.java index 7bb6ae7b20..f472325bee 100644 --- a/core/src/io/anuke/mindustry/game/GlobalData.java +++ b/core/src/io/anuke/mindustry/game/GlobalData.java @@ -72,7 +72,7 @@ public class GlobalData{ /** Returns whether or not this piece of content is unlocked yet. */ public boolean isUnlocked(UnlockableContent content){ - return true;//content.alwaysUnlocked() || unlocked.getOr(content.getContentType(), ObjectSet::new).contains(content.name); + return content.alwaysUnlocked() || unlocked.getOr(content.getContentType(), ObjectSet::new).contains(content.name); } /**