Increase the luminance of the light sources Sombra can destroy

This commit is contained in:
Sollace 2023-08-27 23:19:24 +01:00
parent 6bbea1766f
commit d08e4ef689
No known key found for this signature in database
GPG key ID: E52FACE7B5C773DB

View file

@ -273,7 +273,7 @@ public class SombraEntity extends HostileEntity implements ArenaCombatant, Parti
generateBodyParticles();
} else {
for (BlockPos p : BlockPos.iterateOutwards(getBlockPos(), 2, 1, 2)) {
if (getWorld().getBlockState(p).getLuminance() > 3) {
if (getWorld().getBlockState(p).getLuminance() > 13) {
destroyLightSource(p);
}
}