Skip to content

Commit

Permalink
remove machine orientation provider
Browse files Browse the repository at this point in the history
  • Loading branch information
omergunr100 committed Feb 10, 2025
1 parent 6baf51a commit 6639b0b
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 41 deletions.
3 changes: 0 additions & 3 deletions src/main/java/com/gregtechceu/gtceu/config/ConfigHolder.java
Original file line number Diff line number Diff line change
Expand Up @@ -788,9 +788,6 @@ public static class DeveloperConfigs {
@Configurable
@Configurable.Comment({ "Dump all registered GT models/blockstates/etc?", "Default: false" })
public boolean dumpAssets = false;
@Configurable
@Configurable.Comment({ "Enable debug data providers?", "Default: false" })
public boolean enabledDebugDataProviders = false;
}

public static class RendererConfigs {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
package com.gregtechceu.gtceu.integration.jade;

import com.gregtechceu.gtceu.GTCEu;
import com.gregtechceu.gtceu.api.block.MetaMachineBlock;
import com.gregtechceu.gtceu.api.blockentity.MetaMachineBlockEntity;
import com.gregtechceu.gtceu.common.blockentity.FluidPipeBlockEntity;
import com.gregtechceu.gtceu.common.data.GTMaterialItems;
import com.gregtechceu.gtceu.integration.jade.provider.*;
import com.gregtechceu.gtceu.integration.jade.provider.dev.MachineOrientationProvider;

import net.minecraft.world.item.Item;
import net.minecraft.world.level.block.Block;
Expand Down Expand Up @@ -77,7 +75,6 @@ public void registerClient(IWailaClientRegistration registration) {
registration.registerBlockComponent(new MEPatternBufferProxyProvider(), Block.class);
registration.registerBlockComponent(new MEPatternBufferProvider(), Block.class);
}
registration.registerBlockComponent(new MachineOrientationProvider(), MetaMachineBlock.class);

registration.registerItemStorageClient(GTItemStorageProvider.INSTANCE);
registration.registerFluidStorageClient(GTFluidStorageProvider.INSTANCE);
Expand Down

This file was deleted.

0 comments on commit 6639b0b

Please sign in to comment.