summaryrefslogtreecommitdiff
path: root/ihl/enviroment/LightHandler.java
diff options
context:
space:
mode:
Diffstat (limited to 'ihl/enviroment/LightHandler.java')
-rw-r--r--ihl/enviroment/LightHandler.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/ihl/enviroment/LightHandler.java b/ihl/enviroment/LightHandler.java
index b3f8da6..c89ffb7 100644
--- a/ihl/enviroment/LightHandler.java
+++ b/ihl/enviroment/LightHandler.java
@@ -59,7 +59,7 @@ public class LightHandler {
private void litBlocksAndGetDescendants(World world, int[] evSource, int[] lightSource, BitSet illuminatedBlocksSet,
int ev, int power, int[] directionMask, int[] borders) {
power = this.getNewPower(world, ev, evSource, lightSource, power, directionMask, illuminatedBlocksSet, borders);
- power = (power<<1)/3 - 1;
+ power = (power<<4)/17 - 1;
if (power > 1) {
if (vectors[ev][0] == 0) {
int[] xyz = IHLMod.explosionHandler.decodeXYZ(ev);