flip some boolean so craftables actually show up

This commit is contained in:
PrototypeTrousers
2021-12-10 20:26:11 -03:00
parent e81fb09599
commit eaa01f7648
2 changed files with 6 additions and 2 deletions
+5 -1
View File
@@ -222,7 +222,7 @@ public class GridStorageCache implements IStorageGrid
for( final ICellProvider cc : ll )
{
boolean active = false;
boolean active = true;
if( cc instanceof IActionHost )
{
@@ -231,6 +231,10 @@ public class GridStorageCache implements IStorageGrid
{
active = true;
}
else
{
active = false;
}
}
if( active )