summaryrefslogtreecommitdiffstats
path: root/EssentialsSigns/src/net/ess3/signs/SignDisposal.java
blob: 01775e18c5a4776422fcdfb63b873fdfb19e1c7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package net.ess3.signs;

import net.ess3.api.IEssentials;
import net.ess3.api.IUser;


public class SignDisposal extends EssentialsSign
{
	public SignDisposal()
	{
		super("Disposal");
	}

	@Override
	protected boolean onSignInteract(final ISign sign, final IUser player, final String username, final IEssentials ess)
	{
		player.sendMessage("Bukkit broke this sign :(");
		//TODO: wait for a fix in bukkit
		//Problem: Items can be duplicated
		//player.getBase().openInventory(ess.getServer().createInventory(player, 36));
		return true;
	}
}