misc refactoring 2

This commit is contained in:
Sen 2025-05-14 15:45:27 +02:00
parent 10ba39c70b
commit 660199b1d8
14 changed files with 344 additions and 420 deletions

View file

@ -212,7 +212,7 @@ public abstract class Converter {
}
private static void mapTile(Class<? extends TileEntity> clazz, String ... names) {
String name = TileRegistry.classToNameMap.get(clazz);
String name = TileRegistry.CLASS_TO_NAME.get(clazz);
for(String oldname : names) {
TILE_MAP.put(oldname, name);
}