Skip to content

Commit

Permalink
Merge pull request #20 from embeddedt/fix-duplicate-config-tab
Browse files Browse the repository at this point in the history
Fix config tab appearing twice
  • Loading branch information
ferriarnus authored Aug 3, 2024
2 parents 9f3114c + 968aacf commit ee921fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import java.util.ArrayList;
import java.util.List;

@EventBusSubscriber(bus = EventBusSubscriber.Bus.GAME, value = Dist.CLIENT)
@EventBusSubscriber(modid = Nvidium.MOD_ID, bus = EventBusSubscriber.Bus.GAME, value = Dist.CLIENT)
public class ConfigGuiBuilder {
private static final NvidiumConfigStore store = NvidiumConfigStore.INSTANCE;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import net.neoforged.fml.loading.FMLLoader;

public class IrisCheck {
public static final boolean IRIS_LOADED = FMLLoader.getLoadingModList().getModFileById("oculus") != null;
public static final boolean IRIS_LOADED = FMLLoader.getLoadingModList().getModFileById("iris") != null;

private static boolean checkIrisShaders() {
return IrisApi.getInstance().isShaderPackInUse();
Expand Down

0 comments on commit ee921fc

Please sign in to comment.