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