-
Notifications
You must be signed in to change notification settings - Fork 6
Settings
Alexandre DUPONCHEL edited this page Aug 16, 2016
·
6 revisions
Config file is in your game directory /config as forgecreeperheal.cfg . This is JSON so you have to know how write JSON correctly to customize settings. See https://wikipedia.org/wiki/JSON .
IMPOTANT : Settings only affect new explosions
Setting | Default value | Description |
---|---|---|
minTickStart | 6000 | Minimum ticks before starting heal |
maxTickStart | 12000 | Maximum ticks before starting heal |
minTick | 0 | Minimum ticks between each heal |
maxTick | 200 | Maximum ticks between each heal |
Default Minecraft World tick rate is 20 ticks per second.
- 1 tick = 0.05 s
- 200 ticks = 10 s
- 6000 ticks = 300 s = 5 m = 1/2 minecraft day
- 12000 ticks = 600 s = 10 m = 1 minecraft day
Setting | Default value | Description |
---|---|---|
overrideBlock | false | When a block is healed, if a replacement block has been placed meanwhile, this block is overrided by the healed block |
overrideFluid | true | When a block is healed, if a fluid filled the block position meanwhile, this fluid is overrided at this position by the healed block |
dropIfCollision | true | If "overrideBlock" then the replacement block is dropped, else the block about to be heal is dropped |
Setting | Default value | Description |
---|---|---|
dropItems | false | Drops all items from a container when it blows up, else items are restored with the container when healed |
Setting | Default value | Description |
---|---|---|
removeException | [minecraft:tnt] | These blocks will be not removed after a handled explosion and will be affected by the explosion |
healException | [minecraft:tnt] | These blocks will be not healed |
sourceException | [] | Forge Creeper Heal does not handle explosion triggered by entity from these entities |
About « removeException » : While explosion, Forge Creeper Heal removes all affected blocks not contained in this list. Removed blocks don't take explosion effect, so no items droped for basic blocks and for TNT its doesn't activate. So if you remove TNT from this list you will not have chain reaction anymore.
About « sourceException » : Arguments is Java cannonical class name, so for Creeper this is net.minecraft.entity.monster.EntityCreeper.