From 7433eb763086590c5d0141bf35b112e2de568503 Mon Sep 17 00:00:00 2001 From: modmuss50 Date: Sat, 8 Dec 2018 22:05:36 +0000 Subject: [PATCH] Fix bad rename --- src/main/java/techreborn/Core.java | 4 ++-- src/main/java/techreborn/blocks/OreBlockStateManager.java | 2 +- src/main/java/techreborn/client/render/ModelHelper.java | 2 +- src/main/java/techreborn/compat/ic2/IC2Module.java | 2 +- src/main/java/techreborn/tiles/cable/TileCable.java | 2 +- src/main/java/techreborn/tiles/generator/TileSolarPanel.java | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main/java/techreborn/Core.java b/src/main/java/techreborn/Core.java index 8548c7a07..71494fce1 100644 --- a/src/main/java/techreborn/Core.java +++ b/src/main/java/techreborn/Core.java @@ -132,7 +132,7 @@ public class Core { logHelper.info("PreInitialization Complete"); } - @SubscribeEvent(priority = EventPriority.LOW)//LOW is used as we want it to tick as late as possible, but before crafttweaker + @SubscribeEvent(priority = EventPriority.LOW)//LOW is used as we want it to load as late as possible, but before crafttweaker public void registerRecipes(RegistryEvent.Register event) { //Register ModRecipes ModRecipes.init(); @@ -168,7 +168,7 @@ public class Core { //Village stuff VillagerRegistry.instance().registerVillageCreationHandler(new VillagePlantaionHandler()); MapGenStructureIO.registerStructureComponent(VillageComponentRubberPlantaion.class, new ResourceLocation(ModInfo.MOD_ID, "rubberplantation").toString()); - ModLootTables.CHESTS_RUBBER_PLANTATION.toString(); //Done to make it tick, then it will be read from disk + ModLootTables.CHESTS_RUBBER_PLANTATION.toString(); //Done to make it load, then it will be read from disk // Scrapbox if (BehaviorDispenseScrapbox.dispenseScrapboxes) { BlockDispenser.DISPENSE_BEHAVIOR_REGISTRY.putObject(ModItems.SCRAP_BOX, new BehaviorDispenseScrapbox()); diff --git a/src/main/java/techreborn/blocks/OreBlockStateManager.java b/src/main/java/techreborn/blocks/OreBlockStateManager.java index 703bdf4da..f362bf685 100644 --- a/src/main/java/techreborn/blocks/OreBlockStateManager.java +++ b/src/main/java/techreborn/blocks/OreBlockStateManager.java @@ -29,7 +29,7 @@ import reborncore.common.registration.impl.ConfigRegistry; import techreborn.lib.ModInfo; -//This is in its own class as not to tick the block class before +//This is in its own class as not to load the block class before @RebornRegistry(modID = ModInfo.MOD_ID, priority = 1, earlyReg = true) public class OreBlockStateManager { //This is a one off config, dont worry about it diff --git a/src/main/java/techreborn/client/render/ModelHelper.java b/src/main/java/techreborn/client/render/ModelHelper.java index 453d54def..e9e8af66e 100644 --- a/src/main/java/techreborn/client/render/ModelHelper.java +++ b/src/main/java/techreborn/client/render/ModelHelper.java @@ -53,7 +53,7 @@ public class ModelHelper { return ModelBlock.deserialize(getReaderForResource(location)).getAllTransforms(); } catch (IOException exception) { - Core.logHelper.warn("Can't tick resource " + location); + Core.logHelper.warn("Can't load resource " + location); exception.printStackTrace(); return null; } diff --git a/src/main/java/techreborn/compat/ic2/IC2Module.java b/src/main/java/techreborn/compat/ic2/IC2Module.java index 083667c92..57ef1bb8f 100644 --- a/src/main/java/techreborn/compat/ic2/IC2Module.java +++ b/src/main/java/techreborn/compat/ic2/IC2Module.java @@ -73,7 +73,7 @@ public class IC2Module implements ICompatModule, IC2Helper { TechRebornAPI.ic2Helper = this; } - // LOW is used as we want it to tick as late as possible, but before crafttweaker + // LOW is used as we want it to load as late as possible, but before crafttweaker @SubscribeEvent(priority = EventPriority.LOW) public void registerRecipes(RegistryEvent.Register event) { recipeDuplicateList.add(new RecipeDuplicate(new ItemStack(ModBlocks.MACHINE_FRAMES, 1, 0), diff --git a/src/main/java/techreborn/tiles/cable/TileCable.java b/src/main/java/techreborn/tiles/cable/TileCable.java index d076ab814..04b29f903 100644 --- a/src/main/java/techreborn/tiles/cable/TileCable.java +++ b/src/main/java/techreborn/tiles/cable/TileCable.java @@ -60,7 +60,7 @@ public class TileCable extends TileEntity private ArrayList sendingFace = new ArrayList(); int ticksSinceLastChange = 0; - //MC calls this during world tick. Keep it, please. + //MC calls this during world load. Keep it, please. public TileCable() { super(); } diff --git a/src/main/java/techreborn/tiles/generator/TileSolarPanel.java b/src/main/java/techreborn/tiles/generator/TileSolarPanel.java index b4e8485d3..3cf06d2c2 100644 --- a/src/main/java/techreborn/tiles/generator/TileSolarPanel.java +++ b/src/main/java/techreborn/tiles/generator/TileSolarPanel.java @@ -138,7 +138,7 @@ public class TileSolarPanel extends TilePowerAcceptor implements IToolDrop { if(tag.hasKey("panelType")){ panel = EnumPanelType.values()[tag.getInteger("panelType")]; } else { - Core.logHelper.warn("A solar panel has failed to tick from NBT, it will not work correctly. Please break and replace it to fix the issue. BlockPos:" + pos.toString()); + Core.logHelper.warn("A solar panel has failed to load from NBT, it will not work correctly. Please break and replace it to fix the issue. BlockPos:" + pos.toString()); panel = EnumPanelType.Basic; } super.readFromNBT(tag);