Skip to content

Commit

Permalink
Update void portal texture
Browse files Browse the repository at this point in the history
No longer reuses the same texture from eldritch portals.
  • Loading branch information
IcarussOne committed Aug 18, 2024
1 parent 23208b4 commit 6787ff6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public static class GeneralSettings {
public int CC_TIME = 5;

@Config.Name("Cleansing Charm: Warp")
@Config.Comment("The amount of warp taken by the Cleansing Charm [default: 1]")
@Config.Comment("The amount of Warp taken by the Cleansing Charm [default: 1]")
@Config.RangeInt(min = 1, max = 99999)
@Config.RequiresMcRestart
public int CC_WARP = 1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import org.lwjgl.opengl.GL11;

import com.verdantartifice.thaumicwonders.ThaumicWonders;
import com.verdantartifice.thaumicwonders.common.entities.EntityVoidPortal;

import net.minecraft.client.Minecraft;
Expand All @@ -19,7 +20,7 @@

@SideOnly(Side.CLIENT)
public class RenderVoidPortal extends Render<EntityVoidPortal> {
private static final ResourceLocation TEXTURE = new ResourceLocation("thaumcraft", "textures/misc/eldritch_portal.png");
private static final ResourceLocation TEXTURE = new ResourceLocation(ThaumicWonders.MODID, "textures/misc/void_portal.png");

public RenderVoidPortal(RenderManager renderManager) {
super(renderManager);
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 6787ff6

Please sign in to comment.