Show world processors in darkness in editor mode

This commit is contained in:
Anuken
2022-10-31 17:51:34 -04:00
parent 2e42071c92
commit e3d7acc556
7 changed files with 12 additions and 10 deletions

View File

@@ -164,7 +164,7 @@ public class Tile implements Position, QuadTreeObject, Displayable{
}
public boolean isDarkened(){
return block.solid && ((!block.synthetic() && block.fillsTile) || block.forceDark);
return block.solid && ((!block.synthetic() && block.fillsTile) || block.checkForceDark(this));
}
public Floor floor(){