Check the file ending. Fixes #11.
This commit is contained in:
parent
2f75fbdb1d
commit
fa59f9f6cd
@ -102,7 +102,12 @@ public class MUtil
|
|||||||
for (File playerfile : playerfiles)
|
for (File playerfile : playerfiles)
|
||||||
{
|
{
|
||||||
String filename = playerfile.getName();
|
String filename = playerfile.getName();
|
||||||
|
|
||||||
|
// Ensure it's actually a .dat player filefile
|
||||||
|
if (!filename.toLowerCase().endsWith(".dat")) continue;
|
||||||
|
|
||||||
String playername = filename.substring(0, filename.length()-4);
|
String playername = filename.substring(0, filename.length()-4);
|
||||||
|
|
||||||
ret.add(playername);
|
ret.add(playername);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user