Skip to content

Commit

Permalink
Merge pull request #2 from Sefiraat/chore/remove_multipliers
Browse files Browse the repository at this point in the history
Remove addon-judges multipliers
  • Loading branch information
J3fftw1 authored Jun 12, 2022
2 parents 22088a5 + db3dc63 commit d0fdf72
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
7 changes: 4 additions & 3 deletions src/main/java/dev/sefiraat/netheopoiesis/Netheopoiesis.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit d0fdf72

Please sign in to comment.