mirror of
https://github.com/Xiao-MoMi/craft-engine.git
synced 2025-12-27 10:59:07 +00:00
refactor(client-mod): 移除不必要的日志输出
This commit is contained in:
@@ -33,7 +33,6 @@ public class CraftEngineFabricMod implements ModInitializer {
|
||||
YamlUtils.ensureConfigFile("mappings.yml");
|
||||
YamlUtils.ensureConfigFile("config.yml");
|
||||
Map<Identifier, Integer> map = YamlUtils.loadMappingsAndAdditionalBlocks();
|
||||
System.out.println("Loaded " + map.size() + " additional real blocks.");
|
||||
for (Map.Entry<Identifier, Integer> entry : map.entrySet()) {
|
||||
Identifier replacedBlockId = entry.getKey();
|
||||
for (int i = 0; i < entry.getValue(); i++) {
|
||||
@@ -44,7 +43,6 @@ public class CraftEngineFabricMod implements ModInitializer {
|
||||
);
|
||||
}
|
||||
}
|
||||
System.out.println("Registered " + map.size() + " additional real blocks.");
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user