mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-19 23:33:49 +01:00
SPIGOT-5417: Campfire should implement Directional
By: md_5 <git@md-5.net>
This commit is contained in:
parent
2613a8f86e
commit
36f60e00a9
1 changed files with 2 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
package org.bukkit.block.data.type;
|
||||
|
||||
import org.bukkit.block.data.Directional;
|
||||
import org.bukkit.block.data.Lightable;
|
||||
import org.bukkit.block.data.Waterlogged;
|
||||
|
||||
|
@ -7,7 +8,7 @@ import org.bukkit.block.data.Waterlogged;
|
|||
* 'signal_fire' denotes whether the fire is extra smokey due to having a hay
|
||||
* bale placed beneath it.
|
||||
*/
|
||||
public interface Campfire extends Lightable, Waterlogged {
|
||||
public interface Campfire extends Directional, Lightable, Waterlogged {
|
||||
|
||||
/**
|
||||
* Gets the value of the 'signal_fire' property.
|
||||
|
|
Loading…
Reference in a new issue