File tree 1 file changed +3
-3
lines changed
src/main/java/dev/ithundxr/railwaystweaks/mixin/client/compat/create
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ public abstract class ContraptionRenderingWorldMixin<C extends ContraptionRender
33
33
* @author IThundxr
34
34
* @reason Replace stream with for loops to help with performance
35
35
*/
36
- @ Overwrite
36
+ @ Overwrite ( remap = false )
37
37
public void tick () {
38
38
removalTimer ++;
39
39
if (removalTimer >= 20 ) {
@@ -55,7 +55,7 @@ public void tick() {
55
55
* @author IThundxr
56
56
* @reason Replace stream with for loops to help with performance
57
57
*/
58
- @ Overwrite
58
+ @ Overwrite ( remap = false )
59
59
public void beginFrame (BeginFrameEvent event ) {
60
60
renderInfos .forEach ((key , renderInfo ) ->
61
61
renderInfo .beginFrame (event )
@@ -68,7 +68,7 @@ public void beginFrame(BeginFrameEvent event) {
68
68
* @author IThundxr
69
69
* @reason Replace stream with for loops to help with performance
70
70
*/
71
- @ Overwrite
71
+ @ Overwrite ( remap = false )
72
72
protected void collectVisible () {
73
73
visible .clear ();
74
74
You can’t perform that action at this time.
0 commit comments