MagicSpells icon indicating copy to clipboard operation
MagicSpells copied to clipboard

How to update to 1.10

Open Pyroheart opened this issue 7 years ago • 0 comments

You do have to import a spigot.jar of the version 1.10 and to replace into your build.xml the old spigot target by this new one. (notepadd should be enough) Then, you have to create a project with the whole project and to import every librairies that you need, to fixe every error. This should leave two same error into the EntityData.java

This one : var1 = Villager.Profession.valueOf(prof.toUpperCase()).getId();

you must replace this by :

             var1 = Integer.parseInt(prof);  

This should be working now, and your server should accept it in 1.10 :) //VA & SAM

Pyroheart avatar Apr 08 '17 16:04 Pyroheart