Some work on the plugin, added a couple things and worked on the

preparing the jail.
This commit is contained in:
graywolf336
2013-12-24 22:25:14 -06:00
parent a27596bcfb
commit 63032ad6cc
7 changed files with 101 additions and 18 deletions

View File

@ -1,6 +1,10 @@
package com.graywolf336.jail.enums;
public enum LangString {
/** The message sent when we broadcast/log the message for time below -1. */
BROADCASTMESSAGEFOREVER,
/** The message sent when we broadcast/log the message for any time above -1. */
BROADCASTMESSAGEFORMINUTES,
/** The message sent when players are jailed without a reason. */
JAILED,
/** The message sent when players are jailed with a reason. */

View File

@ -1,10 +1,12 @@
package com.graywolf336.jail.enums;
public enum Settings {
BROADCASTJAILING("jailing.jail.broadcastJailing"),
DEBUG("system.debug"),
DEFAULTJAIL("jailing.jail.defaultJail"),
UPDATENOTIFICATIONS("system.updateNotifications"),
JAILDEFAULTTIME("jailing.jail.defaultTime");
JAILDEFAULTTIME("jailing.jail.defaultTime"),
LOGJAILING("jailing.jail.logToConsole"),
UPDATENOTIFICATIONS("system.updateNotifications");
private String path;