This commit is contained in:
lax1dude 2024-12-11 21:06:33 -08:00
parent 46b4bce78f
commit 290e775165
3 changed files with 3 additions and 3 deletions

View File

@ -106,7 +106,7 @@ public class VFile {
if(path == null) {
return null;
}
int i = path.indexOf(pathSeperator);
int i = path.lastIndexOf(pathSeperator);
return i == -1 ? path : path.substring(i + 1);
}

View File

@ -37,7 +37,7 @@ public class WorldConverterEPK {
prog += b.length;
if(prog - lastProgUpdate > 10000) {
lastProgUpdate = prog;
IntegratedServer.updateStatusString("selectWorld.progress.importing.1", prog);
IntegratedServer.updateStatusString("selectWorld.progress.importing.0", prog);
}
}
}

View File

@ -105,7 +105,7 @@ public class WorldConverterMCA {
prog += b.length;
if (prog - lastProgUpdate > 25000) {
lastProgUpdate = prog;
IntegratedServer.updateStatusString("selectWorld.progress.importing.2", prog);
IntegratedServer.updateStatusString("selectWorld.progress.importing.1", prog);
}
}
}