Code style changes.
This commit is contained in:
@@ -22,7 +22,7 @@ import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance;
|
||||
|
||||
public interface IVoicedCommandHandler
|
||||
{
|
||||
public static Logger _log = Logger.getLogger(IVoicedCommandHandler.class.getName());
|
||||
Logger _log = Logger.getLogger(IVoicedCommandHandler.class.getName());
|
||||
|
||||
/**
|
||||
* this is the worker method that is called when someone uses an admin command.
|
||||
@@ -31,11 +31,11 @@ public interface IVoicedCommandHandler
|
||||
* @param params
|
||||
* @return command success
|
||||
*/
|
||||
public boolean useVoicedCommand(String command, L2PcInstance activeChar, String params);
|
||||
boolean useVoicedCommand(String command, L2PcInstance activeChar, String params);
|
||||
|
||||
/**
|
||||
* this method is called at initialization to register all the item ids automatically
|
||||
* @return all known itemIds
|
||||
*/
|
||||
public String[] getVoicedCommandList();
|
||||
String[] getVoicedCommandList();
|
||||
}
|
||||
|
Reference in New Issue
Block a user