mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 04:20:41 +00:00
Fix typo in Guardian. Fixes #40.
This commit is contained in:
parent
e94e908bed
commit
4d0e6254dd
2 changed files with 2 additions and 2 deletions
|
@ -34,7 +34,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.spigotmc</groupId>
|
<groupId>org.spigotmc</groupId>
|
||||||
<artifactId>spigot-api</artifactId>
|
<artifactId>spigot-api</artifactId>
|
||||||
<version>1.8.3-R0.1-SNAPSHOT</version>
|
<version>1.8.4-R0.1-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>BOSEconomy</groupId>
|
<groupId>BOSEconomy</groupId>
|
||||||
|
|
|
@ -56,7 +56,7 @@ public enum Mob {
|
||||||
EXPERIENCEORB("ExperienceOrb", Enemies.NEUTRAL, EntityType.EXPERIENCE_ORB),
|
EXPERIENCEORB("ExperienceOrb", Enemies.NEUTRAL, EntityType.EXPERIENCE_ORB),
|
||||||
ARMOR_STAND("ArmorStand", Enemies.NEUTRAL, EntityType.ARMOR_STAND),
|
ARMOR_STAND("ArmorStand", Enemies.NEUTRAL, EntityType.ARMOR_STAND),
|
||||||
ENDERMITE("Endermite", Enemies.ENEMY, EntityType.ENDERMITE),
|
ENDERMITE("Endermite", Enemies.ENEMY, EntityType.ENDERMITE),
|
||||||
GUARDIAN("Guradian", Enemies.ENEMY, EntityType.GUARDIAN),
|
GUARDIAN("Guardian", Enemies.ENEMY, EntityType.GUARDIAN),
|
||||||
RABBIT("Rabbit", Enemies.FRIENDLY, EntityType.RABBIT);
|
RABBIT("Rabbit", Enemies.FRIENDLY, EntityType.RABBIT);
|
||||||
|
|
||||||
public static final Logger logger = Logger.getLogger("Essentials");
|
public static final Logger logger = Logger.getLogger("Essentials");
|
||||||
|
|
Loading…
Reference in a new issue