From db3dc6306554623337a4f557c37aebd8bface907 Mon Sep 17 00:00:00 2001 From: Sefiraat Date: Sun, 12 Jun 2022 13:05:32 +0100 Subject: [PATCH] Remove addon-judges multipliers --- README.md | 5 ----- .../java/dev/sefiraat/netheopoiesis/Netheopoiesis.java | 7 ++++--- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index dad165d..9842a43 100644 --- a/README.md +++ b/README.md @@ -13,11 +13,6 @@ This addon has three main aims: should they choose to - To make the nether a place suitable (and safe!) place to call home -***Notes for the Addon Jam specifically*** - -- Seed growth rate is multiplied 5x to speed up the process for judges -- Nether Crux spread rate is multiplied 5x also - A more detailed description of mechanics and details on plants can be found in my documentation wiki [here](https://docs.sefiraat.dev/netheopoiesis/purification) diff --git a/src/main/java/dev/sefiraat/netheopoiesis/Netheopoiesis.java b/src/main/java/dev/sefiraat/netheopoiesis/Netheopoiesis.java index d118a71..caf9bc5 100644 --- a/src/main/java/dev/sefiraat/netheopoiesis/Netheopoiesis.java +++ b/src/main/java/dev/sefiraat/netheopoiesis/Netheopoiesis.java @@ -17,9 +17,10 @@ import java.text.MessageFormat; public class Netheopoiesis extends JavaPlugin implements SlimefunAddon { - public static final int CRUX_SPREAD_MULTIPLIER = 5; - public static final int CRYSTALLINE_SPREAD_MULTIPLIER = 3; - public static final int GROWTH_RATE_MULTIPLIER = 5; + // Todo replace with config + public static final int CRUX_SPREAD_MULTIPLIER = 1; + public static final int CRYSTALLINE_SPREAD_MULTIPLIER = 1; + public static final int GROWTH_RATE_MULTIPLIER = 1; private static Netheopoiesis instance;