Fix issue where light would not properly recalculate.
This commit is contained in:
parent
92923a3521
commit
eda74ffac2
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
- if (Block.lightOpacity[par4 & 4095] > 0)
|
- if (Block.lightOpacity[par4 & 4095] > 0)
|
||||||
+ if (getBlockLightOpacity(par1, par2 + 1, par3) > 0)
|
+ if (getBlockLightOpacity(par1, par2, par3) > 0)
|
||||||
{
|
{
|
||||||
if (par2 >= var7)
|
if (par2 >= var7)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue