Skip to content

Commit

Permalink
Adjust soul altar name & book texture
Browse files Browse the repository at this point in the history
  • Loading branch information
ACGaming committed Jun 6, 2024
1 parent 27aa0ee commit 8b0f881
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package mod.emt.harkenscythe.client.render;

import mod.emt.harkenscythe.HarkenScythe;
import mod.emt.harkenscythe.tileentities.HSSoulAltarTE;
import net.minecraft.client.Minecraft;
import net.minecraft.client.model.ModelBook;
Expand All @@ -12,10 +13,13 @@
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.math.MathHelper;
import net.minecraft.world.World;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;

@SideOnly(Side.CLIENT)
public class HSSoulAltarRender extends TileEntitySpecialRenderer<HSSoulAltarTE>
{
private static final ResourceLocation TEXTURE_BOOK = new ResourceLocation("textures/entity/enchanting_table_book.png");
private static final ResourceLocation TEXTURE_BOOK = new ResourceLocation(HarkenScythe.MOD_ID, "textures/entities/soul_altar_book.png");
private final ModelBook modelBook = new ModelBook();

public void render(HSSoulAltarTE te, double x, double y, double z, float partialTicks, int destroyStage, float alpha)
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/harkenscythe/lang/en_us.lang
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ itemGroup.harkenscythe.tab=Harken Scythe
# BLOCKS
tile.harkenscythe.blood_crucible.name=Blood Crucible
tile.harkenscythe.soul_crucible.name=Soul Crucible
tile.harkenscythe.soul_altar.name=Altar of Souls

# ITEMS
item.harkenscythe.diamond_scythe.name=Diamond Scythe
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8b0f881

Please sign in to comment.