mirror of
https://github.com/Auxilor/EcoEnchants.git
synced 2024-12-27 20:37:34 +01:00
Updated to 5.0.3
This commit is contained in:
parent
eca3761a42
commit
ae1fd6b7af
@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<groupId>com.willfp.ecoenchants</groupId>
|
<groupId>com.willfp.ecoenchants</groupId>
|
||||||
<version>5.0.2</version>
|
<version>5.0.3</version>
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<groupId>com.willfp.ecoenchants</groupId>
|
<groupId>com.willfp.ecoenchants</groupId>
|
||||||
<version>5.0.2</version>
|
<version>5.0.3</version>
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<groupId>com.willfp.ecoenchants</groupId>
|
<groupId>com.willfp.ecoenchants</groupId>
|
||||||
<version>5.0.2</version>
|
<version>5.0.3</version>
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<groupId>com.willfp.ecoenchants</groupId>
|
<groupId>com.willfp.ecoenchants</groupId>
|
||||||
<version>5.0.2</version>
|
<version>5.0.3</version>
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<groupId>com.willfp.ecoenchants</groupId>
|
<groupId>com.willfp.ecoenchants</groupId>
|
||||||
<version>5.0.2</version>
|
<version>5.0.3</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>plugin</artifactId>
|
<artifactId>plugin</artifactId>
|
||||||
|
@ -130,11 +130,11 @@ public class EnchantmentCache {
|
|||||||
public String toString() {
|
public String toString() {
|
||||||
return "CacheEntry{" +
|
return "CacheEntry{" +
|
||||||
"enchantment=" + enchantment +
|
"enchantment=" + enchantment +
|
||||||
", name='" + name + '\'' +
|
"§f, name='" + name + '\'' +
|
||||||
", rawName='" + rawName + '\'' +
|
"§f, rawName='" + rawName + '\'' +
|
||||||
", description=" + description +
|
"§f, description=" + description +
|
||||||
", stringDescription='" + stringDescription + '\'' +
|
"§f, stringDescription='" + stringDescription + '\'' +
|
||||||
'}';
|
"§f}";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -8,6 +8,7 @@ import com.willfp.ecoenchants.command.commands.CommandEnchantinfo;
|
|||||||
import com.willfp.ecoenchants.command.tabcompleters.TabCompleterEnchantinfo;
|
import com.willfp.ecoenchants.command.tabcompleters.TabCompleterEnchantinfo;
|
||||||
import com.willfp.ecoenchants.config.ConfigManager;
|
import com.willfp.ecoenchants.config.ConfigManager;
|
||||||
import com.willfp.ecoenchants.display.EnchantDisplay;
|
import com.willfp.ecoenchants.display.EnchantDisplay;
|
||||||
|
import com.willfp.ecoenchants.display.EnchantmentCache;
|
||||||
import com.willfp.ecoenchants.display.packets.PacketOpenWindowMerchant;
|
import com.willfp.ecoenchants.display.packets.PacketOpenWindowMerchant;
|
||||||
import com.willfp.ecoenchants.display.packets.PacketSetCreativeSlot;
|
import com.willfp.ecoenchants.display.packets.PacketSetCreativeSlot;
|
||||||
import com.willfp.ecoenchants.display.packets.PacketSetSlot;
|
import com.willfp.ecoenchants.display.packets.PacketSetSlot;
|
||||||
@ -317,6 +318,10 @@ public class Loader {
|
|||||||
Logger.info("----------------------------");
|
Logger.info("----------------------------");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Logger.info("");
|
||||||
|
Logger.info("Updating cache...");
|
||||||
|
EnchantmentCache.update();
|
||||||
|
|
||||||
Logger.info("");
|
Logger.info("");
|
||||||
Logger.info("Loading Integrations...");
|
Logger.info("Loading Integrations...");
|
||||||
|
|
||||||
|
2
pom.xml
2
pom.xml
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
<groupId>com.willfp.ecoenchants</groupId>
|
<groupId>com.willfp.ecoenchants</groupId>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<version>5.0.2</version>
|
<version>5.0.3</version>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<name>EcoEnchants Parent</name>
|
<name>EcoEnchants Parent</name>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user