Drop unsupported versions (1.13.0, 1.13.1, 1.14.0)
This commit is contained in:
parent
844c8fef1d
commit
b7dc453879
25 changed files with 5450 additions and 15 deletions
|
|
@ -564,7 +564,20 @@ public class DynmapCore implements DynmapCommonAPI {
|
|||
//dumpColorMap("dokuhigh.txt", "dokuhigh.zip");
|
||||
//dumpColorMap("misa.txt", "misa.zip");
|
||||
//dumpColorMap("sphax.txt", "sphax.zip");
|
||||
|
||||
|
||||
Log.info("Block Name dump");
|
||||
Log.info("---------------");
|
||||
for (int i = 0; i < DynmapBlockState.getGlobalIndexMax(); ) {
|
||||
DynmapBlockState bs = DynmapBlockState.getStateByGlobalIndex(i);
|
||||
if (bs != null) {
|
||||
Log.info(String.format("%d,%s,%d", i, bs.blockName, bs.getStateCount()));
|
||||
i += bs.getStateCount();
|
||||
}
|
||||
else {
|
||||
i++;
|
||||
}
|
||||
}
|
||||
Log.info("---------------");
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue