Skip to content

Commit

Permalink
Port to 1.20.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredlll08 committed May 7, 2024
1 parent a23b2ec commit 1ec55ee
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
package com.blamejared.controlling.gradle

object Versions {
const val MOD = "16.0"
const val MOD = "17.0"
const val JAVA = "21"
const val MINECRAFT = "1.20.5"
const val FABRIC_LOADER = "0.15.10"
const val FABRIC = "0.97.6+1.20.5"
const val MINECRAFT = "1.20.6"
const val FABRIC_LOADER = "0.15.11"
const val FABRIC = "0.97.8+1.20.6"
const val FORGE = "49.0.19" // 1.20.4
const val FORGE_LOADER = "[49,)" // 1.20.4
const val NEO_FORGE = "20.5.0-beta"
const val NEO_FORGE = "20.6.42-beta"
const val NEO_FORGE_LOADER= "[2,)"
const val SEARCHABLES = "1.0.5"
const val SEARCHABLES = "1.0.1"
}
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
package com.blamejared.controlling;

import com.blamejared.controlling.events.ClientEventHandler;
import net.neoforged.api.distmarker.Dist;
import net.neoforged.bus.api.IEventBus;
import net.neoforged.fml.common.Mod;
import net.neoforged.fml.event.lifecycle.FMLClientSetupEvent;
import net.neoforged.neoforge.common.NeoForge;

@Mod("controlling")
@Mod(value = "controlling", dist = Dist.CLIENT)
public class Controlling {

public Controlling(IEventBus modEventBus) {
Expand Down

0 comments on commit 1ec55ee

Please sign in to comment.