slicedlime / Entrapment

Minecraft Entrapment Minigame
6 stars 3 forks source link

Spawn safety ends before the spawn safety timer hits 0 #3

Open slicedlime opened 6 years ago

JochCool commented 4 years ago

Confirmed to exist in the 1.15 update

Kri5t0fK commented 3 years ago

Found it: line 124: score DangerTime=100.. means effect is given when >5sec are left until SpawnSafety ends (DangerTime=0) lines 131+133: border starts shrinking for 10sec when SpawnSafety ends (DangerTime=0) https://github.com/slicedlime/Entrapment/blob/6c7e9950ade5cef3042e5771e56d564b244c2c66/datapacks/Entrapment/data/entrapment/functions/loop/game.mcfunction#L122-L133

Solution: line 124: DangerTime=100.. -> DangerTime=0.. or DangerTime=100.. -> DangerTime=20.. (if you want effect - given for 1sec - to end exacly when SpawnSafety ends)