2011-06-08 01:18:33 +00:00
|
|
|
package com.earth2me.essentials.signs;
|
|
|
|
|
|
|
|
import com.earth2me.essentials.IEssentials;
|
|
|
|
import com.earth2me.essentials.User;
|
2011-11-22 02:02:08 +00:00
|
|
|
import com.earth2me.essentials.craftbukkit.ShowInventory;
|
2011-06-08 01:18:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
public class SignDisposal extends EssentialsSign
|
|
|
|
{
|
|
|
|
public SignDisposal()
|
|
|
|
{
|
|
|
|
super("Disposal");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected boolean onSignInteract(final ISign sign, final User player, final String username, final IEssentials ess)
|
|
|
|
{
|
2011-11-22 02:02:08 +00:00
|
|
|
ShowInventory.showEmptyInventory(player);
|
2011-06-08 01:18:33 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|