aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNopoTheGamer <40329022+NopoTheGamer@users.noreply.github.com>2022-01-19 12:23:43 +1100
committerGitHub <noreply@github.com>2022-01-18 20:23:43 -0500
commit1961426de2c41021a3bd393fc52b15ae062dc9a1 (patch)
treed0c4d53799cd5cb7c75d7f38394fa11eed54d798
parent6107995ad7892807bf6ba098548754fea439cee4 (diff)
downloadNotEnoughUpdates-1961426de2c41021a3bd393fc52b15ae062dc9a1.tar.gz
NotEnoughUpdates-1961426de2c41021a3bd393fc52b15ae062dc9a1.tar.bz2
NotEnoughUpdates-1961426de2c41021a3bd393fc52b15ae062dc9a1.zip
bro i wanna know who named it "island" (#67)
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/profileviewer/GuiProfileViewer.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/GuiProfileViewer.java b/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/GuiProfileViewer.java
index dd7fac79..fb96ab5d 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/GuiProfileViewer.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/GuiProfileViewer.java
@@ -215,14 +215,14 @@ public class GuiProfileViewer extends GuiScreen {
Utils.drawTexturedRect(guiLeft - 16 - 5, guiTop + sizeY + 5, 16, 16, GL11.GL_NEAREST);
}
//stranded icon
- if (currProfileInfo != null && currProfileInfo.has("game_mode") && currProfileInfo.get("game_mode").getAsString().equals("stranded")) {
+ if (currProfileInfo != null && currProfileInfo.has("game_mode") && currProfileInfo.get("game_mode").getAsString().equals("island")) {
GlStateManager.color(1, 1, 1, 1);
Minecraft.getMinecraft().getTextureManager().bindTexture(pv_stranded);
Utils.drawTexturedRect(guiLeft - 16 - 5, guiTop + sizeY + 5, 16, 16, GL11.GL_NEAREST);
}
//icon if game mode is unknown
if (currProfileInfo != null && currProfileInfo.has("game_mode") &&
- !currProfileInfo.get("game_mode").getAsString().equals("stranded") &&
+ !currProfileInfo.get("game_mode").getAsString().equals("island") &&
!currProfileInfo.get("game_mode").getAsString().equals("bingo") &&
!currProfileInfo.get("game_mode").getAsString().equals("ironman")) {
GlStateManager.color(1, 1, 1, 1);
@@ -266,13 +266,13 @@ public class GuiProfileViewer extends GuiScreen {
Minecraft.getMinecraft().getTextureManager().bindTexture(pv_bingo);
Utils.drawTexturedRect(guiLeft - 16 - 5, guiTop + sizeY + 2 + 23 + dropdownOptionSize * yIndex, 16, 16, GL11.GL_NEAREST);
}
- if (currProfileInfo != null && currProfileInfo.has("game_mode") && currProfileInfo.get("game_mode").getAsString().equals("stranded")) {
+ if (currProfileInfo != null && currProfileInfo.has("game_mode") && currProfileInfo.get("game_mode").getAsString().equals("island")) {
GlStateManager.color(1, 1, 1, 1);
Minecraft.getMinecraft().getTextureManager().bindTexture(pv_stranded);
Utils.drawTexturedRect(guiLeft - 16 - 5, guiTop + sizeY + 2 + 23 + dropdownOptionSize * yIndex, 16, 16, GL11.GL_NEAREST);
}
if (currProfileInfo != null && currProfileInfo.has("game_mode") &&
- !currProfileInfo.get("game_mode").getAsString().equals("stranded") &&
+ !currProfileInfo.get("game_mode").getAsString().equals("island") &&
!currProfileInfo.get("game_mode").getAsString().equals("bingo") &&
!currProfileInfo.get("game_mode").getAsString().equals("ironman")) {
GlStateManager.color(1, 1, 1, 1);