Fixed #8465
This commit is contained in:
@@ -127,7 +127,7 @@ abstract class PuddleComp implements Posc, Puddlec, Drawc, Syncc{
|
|||||||
|
|
||||||
@Replace
|
@Replace
|
||||||
public float clipSize(){
|
public float clipSize(){
|
||||||
return 20;
|
return 50; //high for light drawing
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -1144,6 +1144,10 @@ public class Block extends UnlockableContent implements Senseable{
|
|||||||
|
|
||||||
clipSize = Math.max(clipSize, size * tilesize);
|
clipSize = Math.max(clipSize, size * tilesize);
|
||||||
|
|
||||||
|
if(hasLiquids && drawLiquidLight){
|
||||||
|
clipSize = Math.max(size * 30f * 2f, clipSize);
|
||||||
|
}
|
||||||
|
|
||||||
if(emitLight){
|
if(emitLight){
|
||||||
clipSize = Math.max(clipSize, lightRadius * 2f);
|
clipSize = Math.max(clipSize, lightRadius * 2f);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user