Skip to content

Commit

Permalink
Update to 1.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
UnRealDinnerbone committed Jun 13, 2023
1 parent ac86dfb commit c99c98c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
### 3.0.0
### 4.0.0

- Port To Fabric
- Update to 1.20
- Update to 1.20.1
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
public class JAGSRegistry implements IRegistry {

private static final RegistryObjects<Item> ITEMS = RegistryFactory.create(Registries.ITEM);
public static final RegistryEntry<Item> GRASS_SEED = ITEMS.register("grass_seed", GrassSeed::new);
public static final RegistryEntry<GrassSeed> GRASS_SEED = ITEMS.register("grass_seed", GrassSeed::new);

public static final TagKey<Block> DIRT = TagKey.create(Registries.BLOCK, new ResourceLocation(JAGS.MOD_ID, "dirt"));
public static final TagKey<Item> GRASS_SEED_TAG = TagKey.create(Registries.ITEM, new ResourceLocation(JAGS.MOD_ID, "grass_seed"));
Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Project
mod_version=3.0.0
mod_version=4.0.0
maven_group=com.unrealdinnerbone
mod_name=JAGS
mod_author=UnRealDinnerbone
Expand All @@ -13,17 +13,17 @@ fabricDataGen=true
forgeDataGen=true

# Common
minecraft_version=1.20
minecraft_version=1.20.1

# Forge
forge_version=46.0.10
forge_version=47.0.1

# Fabric
fabric_version=0.83.0+1.20
fabric_version=0.83.1+1.20.1
fabric_loader_version=0.14.21

# Other
trenzalore_version=2.2.1
trenzalore_version=3.0.1

# Gradle
org.gradle.jvmargs=-Xmx3G
Expand Down

0 comments on commit c99c98c

Please sign in to comment.