mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-23 15:29:34 +01:00
SPIGOT-7889: Fix tool component deserialisation without speed and/or correct-for-drops
By: md_5 <git@md-5.net>
This commit is contained in:
parent
b133887b85
commit
3919314de0
1 changed files with 2 additions and 2 deletions
|
@ -195,8 +195,8 @@ public final class CraftToolComponent implements ToolComponent {
|
|||
}
|
||||
|
||||
public CraftToolRule(Map<String, Object> map) {
|
||||
Float speed = SerializableMeta.getObject(Float.class, map, "speed", false);
|
||||
Boolean correct = SerializableMeta.getObject(Boolean.class, map, "correct-for-drops", false);
|
||||
Float speed = SerializableMeta.getObject(Float.class, map, "speed", true);
|
||||
Boolean correct = SerializableMeta.getObject(Boolean.class, map, "correct-for-drops", true);
|
||||
|
||||
HolderSet<Block> blocks = null;
|
||||
Object blocksObject = SerializableMeta.getObject(Object.class, map, "blocks", false);
|
||||
|
|
Loading…
Add table
Reference in a new issue