Hide internal units from logic

This commit is contained in:
Anuken
2024-08-23 04:00:18 -04:00
parent c0e4c9c5b5
commit 55dfffa4bc
2 changed files with 4 additions and 2 deletions

View File

@@ -132,7 +132,9 @@ public class GlobalVars{
}
for(UnitType type : Vars.content.units()){
put("@" + type.name, type);
if(!type.internal){
put("@" + type.name, type);
}
}
for(Weather weather : Vars.content.weathers()){