1
0
Fork 0

Reduced the creeper explosion timer reset radius from 6 to 3

This gives the player just enough time to get out of the creeper's range, to reset their explosion timer and avoid unnecessary destruction.
This commit is contained in:
Nicu 2023-06-19 03:03:11 +00:00
parent 52fba55910
commit 9b8ecfbe69
1 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ mcl_mobs.register_mob("mobs_mc:creeper", {
explosion_strength = 3,
explosion_radius = 3.5,
explosion_damage_radius = 3.5,
explosiontimer_reset_radius = 6,
explosiontimer_reset_radius = 3,
reach = 3,
explosion_timer = 1.5,
allow_fuse_reset = true,
@ -171,7 +171,7 @@ mcl_mobs.register_mob("mobs_mc:creeper_charged", {
explosion_strength = 6,
explosion_radius = 8,
explosion_damage_radius = 8,
explosiontimer_reset_radius = 6,
explosiontimer_reset_radius = 3,
reach = 3,
explosion_timer = 1.5,
allow_fuse_reset = true,