Updated config comment to mention tags.

This commit is contained in:
2025-05-25 00:10:14 +01:00
parent e4a1a08cf5
commit d0e1eb1a2f

View File

@ -120,9 +120,10 @@ public final class Config {
.comment("'set,0,0,0' - Sets the xp of all blocks to 0.")
.define("entityKillGlobalOperations", new ArrayList<>());
entityKillOperationsRaw = builder
.comment("List of unique operations. Format: '[entity_id],[operation],[min],[max],[priority],[is_last]'")
.comment("List of unique operations. Format: '[entity_id/tag_id],[operation],[min],[max],[priority],[is_last]'")
.comment("Examples:")
.comment("'minecraft:creeper,set,2,2,0,true' - Sets the xp drop for killing creepers to 2, takes highest priority and stops any additional operations.")
.comment("'#some_mod:some_tag,multiply,1,2,1,false' - Multiplies the xp drop for killing all entities tagged some_mod:some_tag by 1-2, allows additional operations.")
.define("entityKillOperations", new ArrayList<>());
builder.pop();
}