diff options
| author | Alkalus <draknyte1@hotmail.com> | 2017-12-18 13:25:25 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-12-18 13:25:25 +1000 |
| commit | b24a09c6a2684be77aa7ee5e1255409051249fe0 (patch) | |
| tree | cdeec7f90f1e12b3ac245a2adc46cdf7108c8c11 /src/Java/gtPlusPlus/core/util/reflect | |
| parent | cda85480a079de30f201a6c87cc7e9997c838a08 (diff) | |
| download | GT5-Unofficial-b24a09c6a2684be77aa7ee5e1255409051249fe0.tar.gz GT5-Unofficial-b24a09c6a2684be77aa7ee5e1255409051249fe0.tar.bz2 GT5-Unofficial-b24a09c6a2684be77aa7ee5e1255409051249fe0.zip | |
+ Added Trinium and Trinium related Alloys. (#170)
+ Added more recycling recipes.
$ Fixed bad materials in component assembler recipes.
Diffstat (limited to 'src/Java/gtPlusPlus/core/util/reflect')
| -rw-r--r-- | src/Java/gtPlusPlus/core/util/reflect/ReflectionUtils.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/core/util/reflect/ReflectionUtils.java b/src/Java/gtPlusPlus/core/util/reflect/ReflectionUtils.java index f88f8e32e0..5f7a60f546 100644 --- a/src/Java/gtPlusPlus/core/util/reflect/ReflectionUtils.java +++ b/src/Java/gtPlusPlus/core/util/reflect/ReflectionUtils.java @@ -95,7 +95,7 @@ public class ReflectionUtils { public static String getMethodName(final int depth) { final StackTraceElement[] ste = new Throwable().getStackTrace(); //System. out.println(ste[ste.length-depth].getClassName()+"#"+ste[ste.length-depth].getMethodName()); - return ste[depth].getMethodName(); + return ste[depth+1].getMethodName(); } |
