aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/common
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2018-05-27 22:30:15 +1000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2018-05-27 22:30:15 +1000
commitb5d8a36adf5b886f681574338586b04e30cf55d6 (patch)
tree2cdf1f6366b807e790eb9e4a9a06081006d3f7dc /src/Java/gtPlusPlus/xmod/gregtech/common
parent64fd0818f6d9351166593f1d14152812c45aa80a (diff)
downloadGT5-Unofficial-b5d8a36adf5b886f681574338586b04e30cf55d6.tar.gz
GT5-Unofficial-b5d8a36adf5b886f681574338586b04e30cf55d6.tar.bz2
GT5-Unofficial-b5d8a36adf5b886f681574338586b04e30cf55d6.zip
$ Tried to fix console spam for invalid tooltip handling.
$ Fixed NEI handler not showing % chances for recipes. (maybe?) $ Fixed Trinium not working correctly in GTNH. $ Fixed invalid cape lookups. % Tweaked recipe for Max tier Redox cells. % Tweaked name of Control Circuit.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/render/GTPP_CapeRenderer.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/render/GTPP_CapeRenderer.java b/src/Java/gtPlusPlus/xmod/gregtech/common/render/GTPP_CapeRenderer.java
index 1bfe20810f..22522aeecc 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/common/render/GTPP_CapeRenderer.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/common/render/GTPP_CapeRenderer.java
@@ -154,6 +154,7 @@ extends RenderPlayer {
}
private String getPlayerName(String name, String uuid) {
+ try {
Logger.WORLD("[Capes++] Trying to UUID check "+name+".");
if (uuid != null) {
if (uuid.length() > 0) {
@@ -179,6 +180,8 @@ extends RenderPlayer {
}
}
Logger.WORLD("[Capes++] Failed UUID check for "+name+".");
+ }
+ catch (Throwable t) {}
return name;
}