Skip to content

Commit

Permalink
Version bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
legobmw99 committed Jan 25, 2025
1 parent c2be8fb commit 08b06f9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Allomancy 5.2.0

This mod adds the basics of [Allomancy](http://coppermind.net/wiki/Allomancy) from Brandon Sanderson's book series *Mistborn*.

This mod is currently updated for `Minecraft 1.21.4` and `NeoForge 21.4.50`
This mod is currently updated for `Minecraft 1.21.4` and `NeoForge 21.4.75`

Please verify and report any issues!

Expand Down
11 changes: 6 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ org.gradle.jvmargs=-Xmx2G
org.gradle.daemon=true
org.gradle.parallel=true
org.gradle.caching=true
# org.gradle.configuration-cache=true
org.gradle.configuration-cache=true
org.gradle.configuration-cache.problems=warn

## Environment Properties
# You can find the latest versions here: https://projects.neoforged.net/neoforged/neoforge
Expand All @@ -14,15 +15,15 @@ minecraft_version=1.21.4
# as they do not follow standard versioning conventions.
minecraft_version_range=[1.21.4,1.22)
# The Neo version must agree with the Minecraft version to get a valid artifact
neo_version=21.4.50-beta
neo_version=21.4.75-beta
# The Neo version range can use any version of Neo as bounds
neo_version_range=[21.4.50-beta,)
neo_version_range=[21.4.75-beta,)
# The loader version range can only use the major version of FML as bounds
loader_version_range=[4,)
# read more on this at https://github.com/neoforged/NeoGradle/blob/NG_7.0/README.md#apply-parchment-mappings
# you can also find the latest versions at: https://parchmentmc.org/docs/getting-started
parchment_minecraft_version=1.21.4
parchment_mappings_version=2024.12.29
parchment_mappings_version=2025.01.19
# https://www.curseforge.com/minecraft/mc-mods/jade/files/all
jade_id=5976531
jade_version_range=[17,)
Expand All @@ -35,7 +36,7 @@ mod_name=Allomancy
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
mod_license=GPL v3
# The mod version. See https://semver.org/
mod_version=5.2.0b3
mod_version=5.2.0
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
# This should match the base package used for the mod sources.
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@
import java.util.function.Supplier;

public final class CombatSetup {
private static final DeferredRegister<EntityType<?>> ENTITIES =
DeferredRegister.create(Registries.ENTITY_TYPE, Allomancy.MODID);
private static final DeferredRegister.Entities ENTITIES = DeferredRegister.createEntities(Allomancy.MODID);

private static final DeferredRegister.Items ITEMS = DeferredRegister.createItems(Allomancy.MODID);

Expand Down

0 comments on commit 08b06f9

Please sign in to comment.