update mache, rebuild patches for concurrency fix

This commit is contained in:
MiniDigger | Martin
2024-12-14 16:08:25 +01:00
parent 649f20ca93
commit f803e7cc28
3 changed files with 12 additions and 12 deletions

View File

@@ -56,9 +56,9 @@
.ifPresent(data -> this.vibrationData = data);
}
- this.duplicationCooldown = tag.getInt("DuplicationCooldown");
+ this.duplicationCooldown = tag.getLong("DuplicationCooldown"); // Paper - Load as long
this.entityData.set(DATA_CAN_DUPLICATE, tag.getBoolean("CanDuplicate"));
- this.duplicationCooldown = compound.getInt("DuplicationCooldown");
+ this.duplicationCooldown = compound.getLong("DuplicationCooldown"); // Paper - Load as long
this.entityData.set(DATA_CAN_DUPLICATE, compound.getBoolean("CanDuplicate"));
}
@@ -508,15 +_,17 @@