9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-27 19:19:07 +00:00

show unloaded tectonicplates count

This commit is contained in:
CrazyDev22
2023-12-21 22:36:50 +01:00
parent 1a786fb418
commit b3a087702d

View File

@@ -98,7 +98,7 @@ public class IrisEngineSVC implements IrisService {
long unloadStart = System.currentTimeMillis();
int count = engine.getMantle().unloadTectonicPlate();
if (count > 0) {
Iris.info("Unloaded TectonicPlates in " + C.RED + Form.duration(System.currentTimeMillis() - unloadStart, 2));
Iris.info("Unloaded " + count + " TectonicPlates in " + C.RED + Form.duration(System.currentTimeMillis() - unloadStart, 2));
}
}
} catch (Throwable e) {