mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-29 12:27:59 +01:00
fix javadocs for SpawnerEntry$Equipment API
This commit is contained in:
parent
5a55c71491
commit
a9b6792b11
46
patches/api/Fix-SpawnerEntry-Equipment-API.patch
Normal file
46
patches/api/Fix-SpawnerEntry-Equipment-API.patch
Normal file
@ -0,0 +1,46 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
||||
Date: Fri, 26 Apr 2024 17:00:00 -0700
|
||||
Subject: [PATCH] Fix SpawnerEntry$Equipment API
|
||||
|
||||
|
||||
diff --git a/src/main/java/org/bukkit/block/spawner/SpawnerEntry.java b/src/main/java/org/bukkit/block/spawner/SpawnerEntry.java
|
||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||
--- a/src/main/java/org/bukkit/block/spawner/SpawnerEntry.java
|
||||
+++ b/src/main/java/org/bukkit/block/spawner/SpawnerEntry.java
|
||||
@@ -0,0 +0,0 @@ public class SpawnerEntry {
|
||||
private final Map<EquipmentSlot, Float> dropChances;
|
||||
|
||||
public Equipment(@NotNull LootTable equipmentLootTable, @NotNull Map<EquipmentSlot, Float> dropChances) {
|
||||
+ Preconditions.checkArgument(equipmentLootTable != null, "table cannot be null"); // Paper
|
||||
this.equipmentLootTable = equipmentLootTable;
|
||||
this.dropChances = dropChances;
|
||||
}
|
||||
|
||||
/**
|
||||
- * Set the loot table for the entity.
|
||||
+ * Set the loot table for the spawned entity's equipment slots.
|
||||
* <br>
|
||||
- * To remove a loot table use null. Do not use {@link LootTables#EMPTY}
|
||||
- * to clear a LootTable.
|
||||
+ * To remove a loot table use {@link LootTables#EMPTY}.
|
||||
*
|
||||
* @param table this {@link org.bukkit.entity.Mob} will have.
|
||||
*/
|
||||
public void setEquipmentLootTable(@NotNull LootTable table) {
|
||||
+ Preconditions.checkArgument(table != null, "table cannot be null"); // Paper
|
||||
this.equipmentLootTable = table;
|
||||
}
|
||||
|
||||
/**
|
||||
- * Gets the loot table for the entity.
|
||||
+ * Gets the loot table for the spawned entity's equipment.
|
||||
* <br>
|
||||
*
|
||||
- * If an entity does not have a loot table, this will return null, NOT
|
||||
- * an empty loot table.
|
||||
+ * If an entity does not have a loot table, this will return an
|
||||
+ * empty loot table.
|
||||
*
|
||||
* @return the loot table for this entity.
|
||||
*/
|
Loading…
Reference in New Issue
Block a user