mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2025-01-23 11:27:54 +01:00
Mining the errors away'
post merge fixes
This commit is contained in:
parent
c95bd4c722
commit
e59b741045
3 changed files with 4 additions and 5 deletions
|
@ -84,7 +84,7 @@ public final class FlwCommands {
|
|||
return Command.SINGLE_SUCCESS;
|
||||
})));
|
||||
|
||||
var lightSmoothnessValue = ForgeFlwConfig.INSTANCE.client.backendConfig.lightSmoothness;
|
||||
var lightSmoothnessValue = NeoForgeFlwConfig.INSTANCE.client.backendConfig.lightSmoothness;
|
||||
command.then(Commands.literal("lightSmoothness")
|
||||
.then(Commands.argument("mode", LightSmoothnessArgument.INSTANCE)
|
||||
.executes(context -> {
|
||||
|
@ -98,7 +98,7 @@ public final class FlwCommands {
|
|||
return Command.SINGLE_SUCCESS;
|
||||
})));
|
||||
|
||||
var useLightDirectionsValue = ForgeFlwConfig.INSTANCE.client.backendConfig.useLightDirections;
|
||||
var useLightDirectionsValue = NeoForgeFlwConfig.INSTANCE.client.backendConfig.useLightDirections;
|
||||
command.then(Commands.literal("useLightDirections")
|
||||
.executes(context -> {
|
||||
if (useLightDirectionsValue.get()) {
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
package dev.engine_room.flywheel.impl;
|
||||
|
||||
import dev.engine_room.flywheel.api.event.ReloadLevelRendererEvent;
|
||||
import dev.engine_room.flywheel.impl.compat.CompatMod;
|
||||
import net.minecraft.client.multiplayer.ClientLevel;
|
||||
import net.neoforged.fml.loading.LoadingModList;
|
||||
import net.neoforged.neoforge.common.NeoForge;
|
||||
|
|
|
@ -31,8 +31,8 @@ fabric_loader_version = 0.16.5
|
|||
fabric_api_version = 0.105.0+1.21.1
|
||||
|
||||
# Build dependency mod versions
|
||||
sodium_version = mc1.21-0.6.0-beta.2
|
||||
iris_version = 1.8.0-beta.1+1.21
|
||||
sodium_version = mc1.21.1-0.6.0-beta.4
|
||||
iris_version = 1.8.0-beta.8+1.21.1
|
||||
|
||||
# Publication info
|
||||
group = dev.engine_room.flywheel
|
||||
|
|
Loading…
Reference in a new issue