SPIGOT-5417: Campfire should implement Directional

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2019-12-09 12:52:34 +11:00
parent 2613a8f86e
commit 36f60e00a9

View File

@@ -1,5 +1,6 @@
package org.bukkit.block.data.type; package org.bukkit.block.data.type;
import org.bukkit.block.data.Directional;
import org.bukkit.block.data.Lightable; import org.bukkit.block.data.Lightable;
import org.bukkit.block.data.Waterlogged; 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 * 'signal_fire' denotes whether the fire is extra smokey due to having a hay
* bale placed beneath it. * 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. * Gets the value of the 'signal_fire' property.