Un-debugged content

This commit is contained in:
Anuken
2019-04-30 12:29:19 -04:00
parent cf61dd0704
commit d8eeb79b63

View File

@@ -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);
}
/**