Fixed sell not being loaded (need constructor, even if super)
This commit is contained in:
parent
8c18e01cb4
commit
c18769d586
@ -10,6 +10,7 @@ import me.ryanhamshire.GriefPrevention.Claim;
|
||||
import me.ryanhamshire.GriefPrevention.GriefPrevention;
|
||||
import net.md_5.bungee.api.ChatColor;
|
||||
|
||||
import java.util.Map;
|
||||
import java.util.UUID;
|
||||
|
||||
import org.bukkit.Bukkit;
|
||||
@ -23,6 +24,11 @@ public class ClaimSell extends ClaimTransaction
|
||||
{
|
||||
super(claim, player, price, sign);
|
||||
}
|
||||
|
||||
public ClaimSell(Map<String, Object> map)
|
||||
{
|
||||
super(map);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void update()
|
||||
|
||||
Loading…
Reference in New Issue
Block a user