mirror of
https://github.com/plexusorg/Plex.git
synced 2024-12-22 17:17:37 +00:00
Update TempbanCMD.java
This commit is contained in:
parent
647f17b5bd
commit
0c7b280aef
@ -58,12 +58,12 @@ public class TempbanCMD extends PlexCommand
|
|||||||
{
|
{
|
||||||
reason = StringUtils.join(args, " ", 2, args.length);
|
reason = StringUtils.join(args, " ", 2, args.length);
|
||||||
String newReason = StringUtils.normalizeSpace(reason.replace("-nrb", ""));
|
String newReason = StringUtils.normalizeSpace(reason.replace("-nrb", ""));
|
||||||
punishment.setReason(newReason.trim().isEmpty() ? "No reason provided." : newReason);
|
punishment.setReason(newReason.trim().isEmpty() ? messageString("noReasonProvided") : newReason);
|
||||||
rollBack = !reason.startsWith("-nrb") && !reason.endsWith("-nrb");
|
rollBack = !reason.startsWith("-nrb") && !reason.endsWith("-nrb");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
punishment.setReason("No reason provided.");
|
punishment.setReason(messageString("noReasonProvided"));
|
||||||
}
|
}
|
||||||
punishment.setPunishedUsername(target.getName());
|
punishment.setPunishedUsername(target.getName());
|
||||||
punishment.setEndDate(TimeUtils.createDate(args[1]));
|
punishment.setEndDate(TimeUtils.createDate(args[1]));
|
||||||
|
Loading…
Reference in New Issue
Block a user