Skip to content

Commit

Permalink
The streamagator doesn't wanna remapator
Browse files Browse the repository at this point in the history
  • Loading branch information
IThundxr committed Nov 3, 2024
1 parent 2486573 commit 8a39351
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public abstract class ContraptionRenderingWorldMixin<C extends ContraptionRender
* @author IThundxr
* @reason Replace stream with for loops to help with performance
*/
@Overwrite
@Overwrite(remap = false)
public void tick() {
removalTimer++;
if (removalTimer >= 20) {
Expand All @@ -55,7 +55,7 @@ public void tick() {
* @author IThundxr
* @reason Replace stream with for loops to help with performance
*/
@Overwrite
@Overwrite(remap = false)
public void beginFrame(BeginFrameEvent event) {
renderInfos.forEach((key, renderInfo) ->
renderInfo.beginFrame(event)
Expand All @@ -68,7 +68,7 @@ public void beginFrame(BeginFrameEvent event) {
* @author IThundxr
* @reason Replace stream with for loops to help with performance
*/
@Overwrite
@Overwrite(remap = false)
protected void collectVisible() {
visible.clear();

Expand Down

0 comments on commit 8a39351

Please sign in to comment.