Misc fog of war fixes

This commit is contained in:
Anuken
2022-02-19 16:32:50 -05:00
parent 895fa784cf
commit 99683bd232
3 changed files with 11 additions and 19 deletions

View File

@@ -104,7 +104,7 @@ public class CoreBlock extends StorageBlock{
public void init(){
//assign to update clipSize internally
lightRadius = 30f + 20f * size;
fogRadius = Math.max(fogRadius, (int)(lightRadius / 8f * 2f));
fogRadius = Math.max(fogRadius, (int)(lightRadius / 8f * 2.5f));
emitLight = true;
super.init();