Skip to content

Commit 8a39351

Browse files
committed
The streamagator doesn't wanna remapator
1 parent 2486573 commit 8a39351

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: src/main/java/dev/ithundxr/railwaystweaks/mixin/client/compat/create/ContraptionRenderingWorldMixin.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public abstract class ContraptionRenderingWorldMixin<C extends ContraptionRender
3333
* @author IThundxr
3434
* @reason Replace stream with for loops to help with performance
3535
*/
36-
@Overwrite
36+
@Overwrite(remap = false)
3737
public void tick() {
3838
removalTimer++;
3939
if (removalTimer >= 20) {
@@ -55,7 +55,7 @@ public void tick() {
5555
* @author IThundxr
5656
* @reason Replace stream with for loops to help with performance
5757
*/
58-
@Overwrite
58+
@Overwrite(remap = false)
5959
public void beginFrame(BeginFrameEvent event) {
6060
renderInfos.forEach((key, renderInfo) ->
6161
renderInfo.beginFrame(event)
@@ -68,7 +68,7 @@ public void beginFrame(BeginFrameEvent event) {
6868
* @author IThundxr
6969
* @reason Replace stream with for loops to help with performance
7070
*/
71-
@Overwrite
71+
@Overwrite(remap = false)
7272
protected void collectVisible() {
7373
visible.clear();
7474

0 commit comments

Comments
 (0)