Bugfix for the language file converter

Bugfix for the missing dependency in the plugin.yml
This commit is contained in:
GeorgH93 2016-11-20 23:50:50 +01:00
parent 96215c5a7c
commit 58ba5abcc5
3 changed files with 3 additions and 2 deletions

View File

@ -45,7 +45,7 @@
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.10.2-R0.1-SNAPSHOT</version>
<version>1.11-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>

View File

@ -4,6 +4,7 @@ website: http://dev.bukkit.org/bukkit-plugins/minepacks/
main: at.pcgamingfreaks.MinePacks.MinePacks
description: Minepacks is a backpack plugin with different backpack sizes, multilanguage and MySQL storage support. It is a simple plugin, but still has a lot of functions.
version: ${project.version}
depend: [PCGF_MC_Plugin_Lib]
commands:
backpack:
description: Main command

View File

@ -62,7 +62,7 @@ protected void doUpgrade(at.pcgamingfreaks.Language oldLang)
}
break;
case "Ingame":
switch(keys[3])
switch(keys[2])
{
case "NoPermission": advancedConverter.put(key, ChatColor.RED + oldYAML.getString(key)); break;
case "OwnBackPackClose": simpleConverter.put(key, key); break;