Skip to content

Commit

Permalink
fix achievements recoloring with icon rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
Wyvest committed Jun 19, 2024
1 parent 593d918 commit f7e3093
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import net.minecraft.client.particle.EntityFX
import org.polyfrost.overflowparticles.OverflowParticles
import java.util.ArrayList

object ModConfig : Config(Mod(OverflowParticles.NAME, ModType.UTIL_QOL), "${OverflowParticles.MODID}.json") {
object ModConfig : Config(Mod(OverflowParticles.NAME, ModType.UTIL_QOL, "/overflowparticles.svg"), "${OverflowParticles.MODID}.json") {

var settings = Settings()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ object IconRenderer {
}
}
RenderHelper.disableStandardItemLighting()
GL.color(1.0f, 1.0f, 1.0f, 1.0f)
GL11.glColor4f(1.0f, 1.0f, 1.0f, 1.0f)
GL.disableBlend()
GL.disableRescaleNormal()
GL.enableAlpha()
Expand Down

0 comments on commit f7e3093

Please sign in to comment.