Skip to content

Commit

Permalink
misc LexForge improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Nolij committed Nov 23, 2024
1 parent 2240e62 commit 1cf633e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
6 changes: 4 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ babric_version = 0.16.9
station_api_version = 1b2d22f

# Forge
forge_minecraft_range = [1.14,)
forge_minecraft_range = [1.14,1.20.5)

## NeoForge
# https://projects.neoforged.net/neoforged/neoforge
Expand Down Expand Up @@ -78,14 +78,16 @@ lexforge16_parchment_version = 2022.03.06
# Legacy Forge

## Archaic Forge
# https://files.minecraftforge.net/net/minecraftforge/forge/index_1.7.10.html
archaic_minecraft_version = 1.7.10
archaic_minecraft_range = [1.7.10]
archaic_mappings_version = 12-1.7.10
archaic_forge_version = 10.13.4.1614-1.7.10
# https://github.com/LegacyModdingMC/UniMixins/releases/latest
unimixins_version = 0.1.17
unimixins_version = 0.1.19

## Vintage Forge
# https://files.minecraftforge.net/net/minecraftforge/forge/index_1.12.2.html
vintage_minecraft_version = 1.12.2
vintage_minecraft_range = [1.8.9,1.12.2]
vintage_mappings_version = 39-1.12
Expand Down
1 change: 1 addition & 0 deletions src/main/java/dev/nolij/zume/ForgeZumeBootstrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
modid = MOD_ID,
name = MOD_NAME,
version = MOD_VERSION,
clientSideOnly = true,
acceptedMinecraftVersions = VINTAGE_VERSION_RANGE,
guiFactory = "dev.nolij.zume.vintage.VintageConfigProvider")
public class ForgeZumeBootstrapper {
Expand Down
1 change: 1 addition & 0 deletions stubs/src/main/java/net/minecraftforge/fml/common/Mod.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
String modid() default "";
String name() default "";
String version() default "";
boolean clientSideOnly() default false;
String acceptedMinecraftVersions() default "";
String guiFactory() default "";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
@Mod(
modid = MOD_ID,
name = MOD_NAME,
version = MOD_VERSION,
version = MOD_VERSION,
clientSideOnly = true,
acceptedMinecraftVersions = VINTAGE_VERSION_RANGE,
guiFactory = "dev.nolij.zume.vintage.VintageConfigProvider")
public class VintageZume implements IZumeImplementation {
Expand Down

0 comments on commit 1cf633e

Please sign in to comment.