diff --git a/src/com/esophose/playerparticles/PlayerParticles.java b/src/com/esophose/playerparticles/PlayerParticles.java index c77e50c..807d91c 100644 --- a/src/com/esophose/playerparticles/PlayerParticles.java +++ b/src/com/esophose/playerparticles/PlayerParticles.java @@ -50,7 +50,7 @@ public class PlayerParticles extends JavaPlugin { * Saves the default config if it doesn't exist * Registers the tab completer and the event listeners * Checks if the config needs to be updated to the new version - * Makes sure the database is accessable + * Makes sure the database is accessible * Updates the map and styleMap @see ParticleCreator * Starts the particle spawning task * Registers the command executor diff --git a/src/com/esophose/playerparticles/manager/LangManager.java b/src/com/esophose/playerparticles/manager/LangManager.java index 5cb9550..ca9a863 100644 --- a/src/com/esophose/playerparticles/manager/LangManager.java +++ b/src/com/esophose/playerparticles/manager/LangManager.java @@ -184,8 +184,8 @@ public class LangManager { public static void setup() { FileConfiguration config = PlayerParticles.getPlugin().getConfig(); messagesEnabled = config.getBoolean("messages-enabled"); - prefixEnabled = config.getBoolean("use-prefix"); - messagePrefix = parseColors(config.getString("prefix")); + prefixEnabled = config.getBoolean("use-message-prefix"); + messagePrefix = parseColors(config.getString("message-prefix")); YamlConfiguration lang = configureLangFile(config); if (lang == null) {