1.12 update

This commit is contained in:
U-NIFLHEIM\Lax 2017-06-21 22:23:08 -07:00
parent eba564e54b
commit 9b7279af14
2 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@
<dependency> <dependency>
<groupId>org.spigotmc</groupId> <groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId> <artifactId>spigot-api</artifactId>
<version>1.11-R0.1-SNAPSHOT</version> <version>1.12-R0.1-SNAPSHOT</version>
<scope>provided</scope> <scope>provided</scope>
<exclusions> <exclusions>
<exclusion> <exclusion>

View File

@ -133,7 +133,7 @@ public abstract class MPlugin extends JavaPlugin {
while ((read = defLangStream.read(bytes)) != -1) { while ((read = defLangStream.read(bytes)) != -1) {
out.write(bytes, 0, read); out.write(bytes, 0, read);
} }
YamlConfiguration defConfig = YamlConfiguration.loadConfiguration(defLangStream); YamlConfiguration defConfig = YamlConfiguration.loadConfiguration(new BufferedReader(new InputStreamReader(defLangStream)));
TL.setFile(defConfig); TL.setFile(defConfig);
} }
} catch (IOException e) { } catch (IOException e) {