[Version 0.7.8.1]

- Resolve issue of language file being overwritten as ANSI instead of UTF8
This commit is contained in:
Steven Scott 2012-09-18 21:00:58 -07:00
parent df12336c41
commit 968730db2d
3 changed files with 4 additions and 2 deletions

2
README
View File

@ -212,6 +212,8 @@ Client randomly crashes on teleport.
=============
Changes
=============
[Version 0.7.8.1]
- Resolve issue of language file being overwritten as ANSI instead of UTF8
[Version 0.7.8.0]
- Updated languages to include sign text (Please update any languages you are able!)
- Resolved NPE due to Bukkit bug with signs

View File

@ -94,7 +94,7 @@ public class LangLoader {
// Save file
fos = new FileOutputStream(datFolder + lang + ".txt");
OutputStreamWriter out = new OutputStreamWriter(fos);
OutputStreamWriter out = new OutputStreamWriter(fos, "UTF8");
BufferedWriter bw = new BufferedWriter(out);
String line = br.readLine();

View File

@ -1,6 +1,6 @@
name: Stargate
main: net.TheDgtl.Stargate.Stargate
version: 0.7.8.0
version: 0.7.8.1
description: Stargate mod for Bukkit
author: Drakia
website: http://www.thedgtl.net