Bucket recipe fix and Creative Sacrificial Dagger fix (#827)
* Bucket recipe fix and Creative Sacrificial Dagger fix * Do #808 * Add a Sacrificial Dagger conversion config * Put the conversion everywhere
This commit is contained in:
parent
81a5e3c956
commit
81d7cd4093
5 changed files with 15 additions and 8 deletions
|
@ -138,6 +138,8 @@ public class ConfigHandler
|
|||
|
||||
// General
|
||||
public static int sacrificialPackConversion;
|
||||
public static int sacrificialDaggerDamage;
|
||||
public static int sacrificialDaggerConversion;
|
||||
|
||||
// Client
|
||||
public static boolean alwaysRenderRoutingLines;
|
||||
|
@ -286,6 +288,8 @@ public class ConfigHandler
|
|||
config.addCustomCategoryComment(category, "General settings");
|
||||
BloodMagicAPI.setLoggingEnabled(config.getBoolean("enableLogging", category, true, "Allows logging information to the console. Fatal errors will bypass this"));
|
||||
sacrificialPackConversion = config.getInt("sacrificialPackConversion", category, 20, 0, 100, "Base multiplier for the Coat of Arms. DamageDealt * sacrificialPackConversion");
|
||||
sacrificialDaggerDamage = config.getInt("sacrificialDaggerDamage", category, 2, 0, 10000, "Damage done from using the Sacrificial Dagger");
|
||||
sacrificialDaggerConversion = config.getInt("sacrificialDaggerConversion", category, 100, 0, 10000, "Amount of LP received per damage point (not heart!)");
|
||||
|
||||
category = "Client";
|
||||
config.addCustomCategoryComment(category, "Client only settings");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue