This commit is contained in:
parent
d33fb21a7b
commit
edd88616f3
@ -1,5 +1,8 @@
|
||||
# Changelog
|
||||
|
||||
**1.0.4**
|
||||
* Fix NPE
|
||||
|
||||
**1.0.3**
|
||||
* Fix Bug With ``initEquipment`` Redirect
|
||||
|
||||
|
@ -10,7 +10,7 @@ org.gradle.jvmargs = -Xmx1G
|
||||
fabric_loader_version = 0.8.8+build.202
|
||||
|
||||
# Mod Properties
|
||||
mod_version = 1.0.3
|
||||
mod_version = 1.0.4
|
||||
maven_group = com.thebrokenrail
|
||||
|
||||
# Dependencies
|
||||
|
@ -40,9 +40,9 @@ public class MixinBoatEntity implements BoatUtil {
|
||||
private static final TrackedData<Integer> CHEST_MODE = DataTracker.registerData(BoatEntity.class, TrackedDataHandlerRegistry.INTEGER);
|
||||
|
||||
@Unique
|
||||
private BoatInventory items;
|
||||
private BoatInventory items = null;
|
||||
@Unique
|
||||
private ItemStack stack;
|
||||
private ItemStack stack = ItemStack.EMPTY;
|
||||
|
||||
@Inject(at = @At("RETURN"), method = "initDataTracker")
|
||||
public void initDataTracker(CallbackInfo info) {
|
||||
|
Reference in New Issue
Block a user