From 3d01eeaf1cb0d716cb1cf2489de92491de0dbe15 Mon Sep 17 00:00:00 2001 From: Anuken Date: Wed, 8 Feb 2023 22:25:10 -0500 Subject: [PATCH] Fixed #8251 --- core/src/mindustry/core/Logic.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/core/Logic.java b/core/src/mindustry/core/Logic.java index 933468f983..22bc9259d0 100644 --- a/core/src/mindustry/core/Logic.java +++ b/core/src/mindustry/core/Logic.java @@ -383,7 +383,7 @@ public class Logic implements ApplicationListener{ public static void researched(Content content){ if(!(content instanceof UnlockableContent u)) return; - boolean was = !u.unlockedNow(); + boolean was = u.unlockedNow(); state.rules.researched.add(u.name); if(!was){