mirror of
https://github.com/Klagarge/PokeHES.git
synced 2025-10-30 03:11:05 +00:00
fix accents
This commit is contained in:
@@ -3,6 +3,7 @@ package Text;
|
||||
import java.io.BufferedReader;
|
||||
import java.io.File;
|
||||
import java.io.FileReader;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
import java.util.Vector;
|
||||
|
||||
public class FightData {
|
||||
@@ -25,7 +26,7 @@ public class FightData {
|
||||
String line = "";
|
||||
|
||||
try {
|
||||
FileReader f = new FileReader(file);
|
||||
FileReader f = new FileReader(file, StandardCharsets.UTF_8);
|
||||
BufferedReader bf = new BufferedReader(f);
|
||||
|
||||
//add the line in the vector attacks of attack
|
||||
|
||||
Reference in New Issue
Block a user