diff options
author | NotAPenguin <michiel.vandeginste@gmail.com> | 2024-09-02 23:17:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-02 23:17:17 +0200 |
commit | 1b820de08a05070909a267e17f033fcf58ac8710 (patch) | |
tree | 02831a025986a06b20f87e5bcc69d1e0c639a342 /src/main/java/kubatech/loaders/item | |
parent | afd3fd92b6a6ab9ab0d0dc3214e6bc8ff7a86c9b (diff) | |
download | GT5-Unofficial-1b820de08a05070909a267e17f033fcf58ac8710.tar.gz GT5-Unofficial-1b820de08a05070909a267e17f033fcf58ac8710.tar.bz2 GT5-Unofficial-1b820de08a05070909a267e17f033fcf58ac8710.zip |
The Great Renaming (#3014)
* move kekztech to a single root dir
* move detrav to a single root dir
* move gtnh-lanthanides to a single root dir
* move tectech and delete some gross reflection in gt++
* remove more reflection inside gt5u
* delete more reflection in gt++
* fix imports
* move bartworks and bwcrossmod
* fix proxies
* move galactigreg and ggfab
* move gtneioreplugin
* try to fix gt++ bee loader
* apply the rename rules to BW
* apply rename rules to bwcrossmod
* apply rename rules to detrav scanner mod
* apply rename rules to galacticgreg
* apply rename rules to ggfab
* apply rename rules to goodgenerator
* apply rename rules to gtnh-lanthanides
* apply rename rules to gt++
* apply rename rules to kekztech
* apply rename rules to kubatech
* apply rename rules to tectech
* apply rename rules to gt
apply the rename rules to gt
* fix tt import
* fix mui hopefully
* fix coremod except intergalactic
* rename assline recipe class
* fix a class name i stumbled on
* rename StructureUtility to GTStructureUtility to prevent conflict with structurelib
* temporary rename of GTTooltipDataCache to old name
* fix gt client/server proxy names
Diffstat (limited to 'src/main/java/kubatech/loaders/item')
-rw-r--r-- | src/main/java/kubatech/loaders/item/items/ItemTea.java (renamed from src/main/java/kubatech/loaders/item/items/Tea.java) | 4 | ||||
-rw-r--r-- | src/main/java/kubatech/loaders/item/items/ItemTeaCollection.java (renamed from src/main/java/kubatech/loaders/item/items/TeaCollection.java) | 4 | ||||
-rw-r--r-- | src/main/java/kubatech/loaders/item/items/ItemTeaIngredient.java (renamed from src/main/java/kubatech/loaders/item/items/TeaIngredient.java) | 4 | ||||
-rw-r--r-- | src/main/java/kubatech/loaders/item/items/ItemTeaUltimate.java (renamed from src/main/java/kubatech/loaders/item/items/TeaUltimate.java) | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/src/main/java/kubatech/loaders/item/items/Tea.java b/src/main/java/kubatech/loaders/item/items/ItemTea.java index f1b3ae3d0b..5beb813053 100644 --- a/src/main/java/kubatech/loaders/item/items/Tea.java +++ b/src/main/java/kubatech/loaders/item/items/ItemTea.java @@ -29,12 +29,12 @@ import net.minecraft.world.World; import kubatech.loaders.item.ItemProxy; -public class Tea extends ItemProxy { +public class ItemTea extends ItemProxy { private final int heal; private final float saturation; - public Tea(String unlocalizedName, int heal, float saturation) { + public ItemTea(String unlocalizedName, int heal, float saturation) { super("tea." + unlocalizedName, "tea/" + unlocalizedName); this.heal = heal; this.saturation = saturation; diff --git a/src/main/java/kubatech/loaders/item/items/TeaCollection.java b/src/main/java/kubatech/loaders/item/items/ItemTeaCollection.java index efa390c517..6b18342462 100644 --- a/src/main/java/kubatech/loaders/item/items/TeaCollection.java +++ b/src/main/java/kubatech/loaders/item/items/ItemTeaCollection.java @@ -43,14 +43,14 @@ import kubatech.api.utils.ModUtils; import kubatech.loaders.ItemLoader; import kubatech.loaders.item.ItemProxy; -public class TeaCollection extends ItemProxy { +public class ItemTeaCollection extends ItemProxy { protected static TeaPage teapage; protected static LinkedList<Achievement> achievements; protected Achievement achievement; private final String achievementname; - public TeaCollection(String unlocalizedName) { + public ItemTeaCollection(String unlocalizedName) { super("teacollection." + unlocalizedName, "tea/" + unlocalizedName); achievementname = "teacollection." + unlocalizedName; } diff --git a/src/main/java/kubatech/loaders/item/items/TeaIngredient.java b/src/main/java/kubatech/loaders/item/items/ItemTeaIngredient.java index 4ff248ea37..08dc460d30 100644 --- a/src/main/java/kubatech/loaders/item/items/TeaIngredient.java +++ b/src/main/java/kubatech/loaders/item/items/ItemTeaIngredient.java @@ -28,9 +28,9 @@ import net.minecraft.util.EnumChatFormatting; import kubatech.loaders.item.ItemProxy; -public class TeaIngredient extends ItemProxy { +public class ItemTeaIngredient extends ItemProxy { - public TeaIngredient(String unlocalizedName) { + public ItemTeaIngredient(String unlocalizedName) { super("teaingredient." + unlocalizedName, "teaingredient/" + unlocalizedName); } diff --git a/src/main/java/kubatech/loaders/item/items/TeaUltimate.java b/src/main/java/kubatech/loaders/item/items/ItemTeaUltimate.java index cee7eba132..d6df893cd6 100644 --- a/src/main/java/kubatech/loaders/item/items/TeaUltimate.java +++ b/src/main/java/kubatech/loaders/item/items/ItemTeaUltimate.java @@ -59,9 +59,9 @@ import kubatech.api.utils.ModUtils; import kubatech.api.utils.StringUtils; import kubatech.loaders.item.IItemProxyGUI; -public class TeaUltimate extends TeaCollection implements IItemProxyGUI { +public class ItemTeaUltimate extends ItemTeaCollection implements IItemProxyGUI { - public TeaUltimate() { + public ItemTeaUltimate() { super("ultimate_tea"); } |