mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 13:16:45 +01:00
Apparently we need to recover from bad flags
This commit is contained in:
parent
cbe46539ca
commit
a263fe2f2d
@ -25,7 +25,9 @@
|
||||
*/
|
||||
package com.plotsquared.core.plot.flag;
|
||||
|
||||
import com.google.common.base.Preconditions;
|
||||
import com.google.common.collect.ImmutableMap;
|
||||
import com.plotsquared.core.PlotSquared;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.Setter;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
@ -128,17 +130,26 @@ public class FlagContainer {
|
||||
* @see #addAll(Collection) to add multiple flags
|
||||
*/
|
||||
public <V, T extends PlotFlag<V, ?>> void addFlag(final T flag) {
|
||||
final PlotFlag<?, ?> oldInstance = this.flagMap.put(flag.getClass(), flag);
|
||||
final PlotFlagUpdateType plotFlagUpdateType;
|
||||
if (oldInstance != null) {
|
||||
plotFlagUpdateType = PlotFlagUpdateType.FLAG_UPDATED;
|
||||
} else {
|
||||
plotFlagUpdateType = PlotFlagUpdateType.FLAG_ADDED;
|
||||
try {
|
||||
Preconditions.checkState(flag.getName().length() <= 64,
|
||||
"flag name may not be more than 64 characters. Check: " + flag.getName());
|
||||
final PlotFlag<?, ?> oldInstance = this.flagMap.put(flag.getClass(), flag);
|
||||
final PlotFlagUpdateType plotFlagUpdateType;
|
||||
if (oldInstance != null) {
|
||||
plotFlagUpdateType = PlotFlagUpdateType.FLAG_UPDATED;
|
||||
} else {
|
||||
plotFlagUpdateType = PlotFlagUpdateType.FLAG_ADDED;
|
||||
}
|
||||
if (this.plotFlagUpdateHandler != null) {
|
||||
this.plotFlagUpdateHandler.handle(flag, plotFlagUpdateType);
|
||||
}
|
||||
this.updateSubscribers
|
||||
.forEach(subscriber -> subscriber.handle(flag, plotFlagUpdateType));
|
||||
} catch (IllegalStateException e) {
|
||||
PlotSquared.log(
|
||||
"yo look at this dumb fuck trying to add this thicc flag lol, nah mate, ain't having none of that");
|
||||
e.printStackTrace();
|
||||
}
|
||||
if (this.plotFlagUpdateHandler != null) {
|
||||
this.plotFlagUpdateHandler.handle(flag, plotFlagUpdateType);
|
||||
}
|
||||
this.updateSubscribers.forEach(subscriber -> subscriber.handle(flag, plotFlagUpdateType));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -75,8 +75,6 @@ public abstract class PlotFlag<T, F extends PlotFlag<T, F>> {
|
||||
flagName.append(chars[i]);
|
||||
}
|
||||
}
|
||||
Preconditions.checkState(flagName.length() <= 64,
|
||||
"flag name may not be more than 64 characters. Check: " + flagName.toString());
|
||||
this.flagName = flagName.toString();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user