Advertisement
TNT_Block

Untitled

Nov 15th, 2019
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. if (o instanceof TileEntityChest) {
  2. Color rainbow;
  3. if (rainbowMode.getValue().booleanValue()) {
  4. rainbow = new Color(RenderUtils.rainbow(1));
  5. } else {
  6. rainbow = Color.RED;
  7. }
  8. RenderUtils.framelessBlockESP(((TileEntityChest) o).getPos(), new Color(rainbow.getRed(), rainbow.getGreen(), rainbow.getBlue(), 45));
  9. GL11.glColor4f(1.0F, 1.0F, 1.0F, 255F);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement