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 cad444c commit 08554aa
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,5 @@ build
# other
eclipse
run

Fabric/run_client/
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
### 2.0.0
### 3.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 @@ -13,6 +13,7 @@
import net.minecraft.world.entity.EntityType;
import net.minecraft.world.entity.MobCategory;
import net.minecraft.world.entity.vehicle.Boat;
import net.minecraft.world.item.CreativeModeTabs;
import net.minecraft.world.item.Item;

import java.util.List;
Expand All @@ -23,12 +24,12 @@ public class OBRegistry implements IRegistry {
private static final RegistryObjects<Item> ITEMS = RegistryFactory.create(Registries.ITEM);
private static final RegistryObjects<EntityType<?>> ENTITY_TYPES = RegistryFactory.create(Registries.ENTITY_TYPE);

public static final RegistryEntry<Item> BOAT_ITEM = ITEMS.register("obsidian_boat", ObsidianBoatItem::new);
public static final RegistryEntry<ObsidianBoatItem> BOAT_ITEM = ITEMS.register("obsidian_boat", ObsidianBoatItem::new);


public static BoatTrigger BOAT_TRIGGER = RegistryFactory.registerCriterion(new BoatTrigger());

public static final RegistryEntry<EntityType<? extends Boat>> ENTITY_TYPE = ENTITY_TYPES.registerGeneric("obsidian_boat", OBServices.COMPACT.getFactorySupplier());
public static final RegistryEntry<EntityType<? extends Boat>> ENTITY_TYPE = ENTITY_TYPES.register("obsidian_boat", OBServices.COMPACT.getFactorySupplier());



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=2.0.0
mod_version=3.0.0
maven_group=com.unrealdinnerbone
mod_name=ObsidianBoat
mod_author=UnRealDinnerbone
Expand All @@ -13,17 +13,17 @@ fabricDataGen=true
forgeDataGen=false

# Common
minecraft_version=1.20
minecraft_version=1.20.1

# Forge
forge_version=46.0.12
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.2
trenzalore_version=3.0.1

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

0 comments on commit 08554aa

Please sign in to comment.