Remove workaround for super-super-class remapping bug

This commit is contained in:
Jonas Herzig
2019-05-25 18:57:32 +02:00
parent 26d8c97136
commit cfdc4b9713
2 changed files with 11 additions and 13 deletions

View File

@@ -41,18 +41,16 @@ public class InputReplayTimer extends WrappedTimer {
} }
@Override @Override
public void beginRenderTick(
//#if MC>=11300 //#if MC>=11300
//#if MC>=11400 long sysClock
// FIXME this should be handled by the preprocessor but there seems to be a bug
public void beginRenderTick(long sysClock) {
//#else
//$$ public void updateTimer(long sysClock) {
//#endif //#endif
super.beginRenderTick(sysClock); ) {
//#else super.beginRenderTick(
//$$ public void updateTimer() { //#if MC>=11300
//$$ super.updateTimer(); sysClock
//#endif //#endif
);
// 1.7.10: We have to run the scheduled executables (ours only) because MC would only run them every tick // 1.7.10: We have to run the scheduled executables (ours only) because MC would only run them every tick
//#if MC<=10710 //#if MC<=10710

View File

@@ -45,7 +45,7 @@ buildscript {
'e93f77b4' // FG 1.2 'e93f77b4' // FG 1.2
) )
} }
classpath 'com.github.replaymod:preprocessor:6be682c' classpath 'com.github.replaymod:preprocessor:eb4fac9'
} }
} }