Skip to content

Commit

Permalink
Fix typo in config
Browse files Browse the repository at this point in the history
  • Loading branch information
BillyGalbreath committed Jul 28, 2019
1 parent 7c81e88 commit c27a4d2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
@@ -1,4 +1,4 @@
From 3613b5b5c27a0265371bf4612156b8aecf0e92c0 Mon Sep 17 00:00:00 2001
From bda77b04fc4d1e17807745254ff5304bb39d304f Mon Sep 17 00:00:00 2001
From: William Blake Galbreath <blake.galbreath@gmail.com>
Date: Thu, 9 May 2019 18:26:06 -0500
Subject: [PATCH] Phantoms attracted to crystals and crystals shoot phantoms
Expand Down Expand Up @@ -373,7 +373,7 @@ index dca18afdbb..9aaa75e959 100644
return this.a(oclass, axisalignedbb, IEntitySelector.f);
}
diff --git a/src/main/java/net/pl3x/purpur/PurpurConfig.java b/src/main/java/net/pl3x/purpur/PurpurConfig.java
index 37bab6180c..feab5b66f8 100644
index 37bab6180c..0bfcef2d38 100644
--- a/src/main/java/net/pl3x/purpur/PurpurConfig.java
+++ b/src/main/java/net/pl3x/purpur/PurpurConfig.java
@@ -136,6 +136,15 @@ public class PurpurConfig {
Expand All @@ -386,7 +386,7 @@ index 37bab6180c..feab5b66f8 100644
+ private static void phantomSettings() {
+ crystalsAttackPhantomsRadius = getDouble("settings.mobs.phantom.crystals-attack-range", crystalsAttackPhantomsRadius);
+ crystalsAttackPhantomDamage = (float) getDouble("settings.mobs.phantom.crystals-attack-damage", crystalsAttackPhantomDamage);
+ phantomsOrbitCrystalsRadius = getDouble("settings.mob.phantom.orbit-crystal-radius", phantomsOrbitCrystalsRadius);
+ phantomsOrbitCrystalsRadius = getDouble("settings.mobs.phantom.orbit-crystal-radius", phantomsOrbitCrystalsRadius);
+ }
+
public static boolean snowmanDropsPumpkin = false;
Expand Down
6 changes: 3 additions & 3 deletions patches/server/0030-Phantoms-spawn-naturally-in-the-end.patch
@@ -1,4 +1,4 @@
From 846ad89741fbfde6234139c5d4fbe0df91006d71 Mon Sep 17 00:00:00 2001
From a5e0ea75c11edf1564f6679514a54afbeeff931a Mon Sep 17 00:00:00 2001
From: William Blake Galbreath <blake.galbreath@gmail.com>
Date: Thu, 20 Jun 2019 18:48:58 -0500
Subject: [PATCH] Phantoms spawn naturally in the end
Expand Down Expand Up @@ -88,7 +88,7 @@ index 2d4ea99f16..ad4341cba5 100644
// Purpur end

diff --git a/src/main/java/net/pl3x/purpur/PurpurConfig.java b/src/main/java/net/pl3x/purpur/PurpurConfig.java
index cd9805e5fb..e86864a5ea 100644
index a9c8e8ef5a..470605d78b 100644
--- a/src/main/java/net/pl3x/purpur/PurpurConfig.java
+++ b/src/main/java/net/pl3x/purpur/PurpurConfig.java
@@ -157,10 +157,12 @@ public class PurpurConfig {
Expand All @@ -99,7 +99,7 @@ index cd9805e5fb..e86864a5ea 100644
private static void phantomSettings() {
crystalsAttackPhantomsRadius = getDouble("settings.mobs.phantom.crystals-attack-range", crystalsAttackPhantomsRadius);
crystalsAttackPhantomDamage = (float) getDouble("settings.mobs.phantom.crystals-attack-damage", crystalsAttackPhantomDamage);
phantomsOrbitCrystalsRadius = getDouble("settings.mob.phantom.orbit-crystal-radius", phantomsOrbitCrystalsRadius);
phantomsOrbitCrystalsRadius = getDouble("settings.mobs.phantom.orbit-crystal-radius", phantomsOrbitCrystalsRadius);
+ spawnPhantomsInTheEnd = getBoolean("settings.mobs.phantom.spawn-in-the-end", spawnPhantomsInTheEnd);
}

Expand Down

0 comments on commit c27a4d2

Please sign in to comment.