1.0.4
Twine/pipeline/head This commit looks good Details

This commit is contained in:
TheBrokenRail 2020-07-19 15:10:33 -04:00
parent d33fb21a7b
commit edd88616f3
3 changed files with 6 additions and 3 deletions

View File

@ -1,5 +1,8 @@
# Changelog
**1.0.4**
* Fix NPE
**1.0.3**
* Fix Bug With ``initEquipment`` Redirect

View File

@ -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

View File

@ -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) {