mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 23:38:25 +01:00
Fix HandlerList for InventoryBlockStartEvent subclasses
This commit is contained in:
parent
1a9500ec94
commit
216d310a35
3 changed files with 6 additions and 33 deletions
|
@ -11,7 +11,7 @@ import org.jetbrains.annotations.NotNull;
|
||||||
@org.jetbrains.annotations.ApiStatus.Experimental // Paper
|
@org.jetbrains.annotations.ApiStatus.Experimental // Paper
|
||||||
public class BrewingStartEvent extends InventoryBlockStartEvent {
|
public class BrewingStartEvent extends InventoryBlockStartEvent {
|
||||||
|
|
||||||
private static final HandlerList handlers = new HandlerList();
|
// Paper - remove HandlerList
|
||||||
private int brewingTime;
|
private int brewingTime;
|
||||||
|
|
||||||
public BrewingStartEvent(@NotNull final Block furnace, @NotNull ItemStack source, int brewingTime) {
|
public BrewingStartEvent(@NotNull final Block furnace, @NotNull ItemStack source, int brewingTime) {
|
||||||
|
@ -37,14 +37,5 @@ public class BrewingStartEvent extends InventoryBlockStartEvent {
|
||||||
this.brewingTime = brewTime;
|
this.brewingTime = brewTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
@NotNull
|
// Paper - remove HandlerList
|
||||||
@Override
|
|
||||||
public HandlerList getHandlers() {
|
|
||||||
return handlers;
|
|
||||||
}
|
|
||||||
|
|
||||||
@NotNull
|
|
||||||
public static HandlerList getHandlerList() {
|
|
||||||
return handlers;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,7 +12,7 @@ import org.jetbrains.annotations.NotNull;
|
||||||
@org.jetbrains.annotations.ApiStatus.Experimental // Paper
|
@org.jetbrains.annotations.ApiStatus.Experimental // Paper
|
||||||
public class CampfireStartEvent extends InventoryBlockStartEvent {
|
public class CampfireStartEvent extends InventoryBlockStartEvent {
|
||||||
|
|
||||||
private static final HandlerList handlers = new HandlerList();
|
// Paper - remove HandlerList
|
||||||
private int cookingTime;
|
private int cookingTime;
|
||||||
private CampfireRecipe campfireRecipe;
|
private CampfireRecipe campfireRecipe;
|
||||||
|
|
||||||
|
@ -50,14 +50,5 @@ public class CampfireStartEvent extends InventoryBlockStartEvent {
|
||||||
this.cookingTime = cookTime;
|
this.cookingTime = cookTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
@NotNull
|
// Paper - remove HandlerList
|
||||||
@Override
|
|
||||||
public HandlerList getHandlers() {
|
|
||||||
return handlers;
|
|
||||||
}
|
|
||||||
|
|
||||||
@NotNull
|
|
||||||
public static HandlerList getHandlerList() {
|
|
||||||
return handlers;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,7 @@ import org.jetbrains.annotations.NotNull;
|
||||||
* {@link org.bukkit.block.Smoker}, and {@link org.bukkit.block.BlastFurnace}.
|
* {@link org.bukkit.block.Smoker}, and {@link org.bukkit.block.BlastFurnace}.
|
||||||
*/
|
*/
|
||||||
public class FurnaceStartSmeltEvent extends InventoryBlockStartEvent {
|
public class FurnaceStartSmeltEvent extends InventoryBlockStartEvent {
|
||||||
private static final HandlerList handlers = new HandlerList();
|
// Paper - remove HandlerList
|
||||||
private final CookingRecipe<?> recipe;
|
private final CookingRecipe<?> recipe;
|
||||||
private int totalCookTime;
|
private int totalCookTime;
|
||||||
|
|
||||||
|
@ -59,14 +59,5 @@ public class FurnaceStartSmeltEvent extends InventoryBlockStartEvent {
|
||||||
this.totalCookTime = cookTime;
|
this.totalCookTime = cookTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
@NotNull
|
// Paper - remove HandlerList
|
||||||
@Override
|
|
||||||
public HandlerList getHandlers() {
|
|
||||||
return handlers;
|
|
||||||
}
|
|
||||||
|
|
||||||
@NotNull
|
|
||||||
public static HandlerList getHandlerList() {
|
|
||||||
return handlers;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue