mirror of
https://github.com/essentials/Essentials.git
synced 2025-08-16 03:24:31 +02:00
@@ -52,7 +52,6 @@ public interface IEssentials extends Plugin
|
||||
int scheduleSyncRepeatingTask(Runnable run, long delay, long period);
|
||||
|
||||
//IPermissionsHandler getPermissionsHandler();
|
||||
|
||||
void reload();
|
||||
|
||||
TNTExplodeListener getTNTListener();
|
||||
|
@@ -1,5 +1,6 @@
|
||||
package com.earth2me.essentials.api;
|
||||
|
||||
|
||||
public interface IEssentialsModule
|
||||
{
|
||||
}
|
||||
|
@@ -6,7 +6,7 @@ import java.util.Collection;
|
||||
|
||||
public interface IKits extends IReload
|
||||
{
|
||||
Kit getKit(String kit)throws Exception;
|
||||
Kit getKit(String kit) throws Exception;
|
||||
|
||||
void sendKit(IUser user, String kit) throws Exception;
|
||||
|
||||
|
@@ -2,7 +2,9 @@ package com.earth2me.essentials.api;
|
||||
|
||||
import org.bukkit.command.CommandSender;
|
||||
|
||||
public interface IReplyTo {
|
||||
|
||||
public interface IReplyTo
|
||||
{
|
||||
void setReplyTo(CommandSender user);
|
||||
|
||||
CommandSender getReplyTo();
|
||||
|
@@ -6,5 +6,4 @@ import com.earth2me.essentials.storage.IStorageObjectHolder;
|
||||
|
||||
public interface IWarp extends IStorageObjectHolder<Warp>
|
||||
{
|
||||
|
||||
}
|
||||
|
@@ -3,7 +3,6 @@ package com.earth2me.essentials.api;
|
||||
|
||||
public class InvalidNameException extends Exception
|
||||
{
|
||||
|
||||
public InvalidNameException(Throwable thrwbl)
|
||||
{
|
||||
super(thrwbl);
|
||||
|
Reference in New Issue
Block a user