Add configurable snowball damage

This commit is contained in:
William Blake Galbreath
2025-01-09 20:34:57 -08:00
committed by granny
parent 4346cee03f
commit 54b81f2b74
3 changed files with 16 additions and 35 deletions

View File

@@ -330,6 +330,11 @@ public class PurpurWorldConfig {
});
}
public int snowballDamage = -1;
private void snowballSettings() {
snowballDamage = getInt("gameplay-mechanics.projectile-damage.snowball", snowballDamage);
}
public boolean anvilAllowColors = false;
public boolean anvilColorsUseMiniMessage;
private void anvilSettings() {