Send a less obnoxious message if the flag name length exceeds the maximum allowed length

This commit is contained in:
Alexander Söderberg 2020-04-30 13:36:03 +02:00
parent a263fe2f2d
commit 135c6f2c15

View File

@ -146,8 +146,9 @@ public class FlagContainer {
this.updateSubscribers this.updateSubscribers
.forEach(subscriber -> subscriber.handle(flag, plotFlagUpdateType)); .forEach(subscriber -> subscriber.handle(flag, plotFlagUpdateType));
} catch (IllegalStateException e) { } catch (IllegalStateException e) {
PlotSquared.log( PlotSquared.log(String.format("Flag '%s' (class: '%s') could not be added to the container"
"yo look at this dumb fuck trying to add this thicc flag lol, nah mate, ain't having none of that"); + " because the flag name exceeded the allowed limit of 64 characters."
+ " Please tell the developer of that flag to fix this.", flag.getName(), flag.getClass().getName()));
e.printStackTrace(); e.printStackTrace();
} }
} }