package com.hypixel.hytale.server.npc.corecomponents.utility.builders;
import com.google.gson.JsonElement;
import com.hypixel.hytale.server.npc.asset.builder.BuilderDescriptorState;
import com.hypixel.hytale.server.npc.asset.builder.BuilderSupport;
import com.hypixel.hytale.server.npc.corecomponents.builders.BuilderActionBase;
import com.hypixel.hytale.server.npc.corecomponents.utility.ActionNothing;
import javax.annotation.Nonnull;
public class BuilderActionNothing extends BuilderActionBase {
public BuilderActionNothing() {
}
@Nonnull
public ActionNothing build(BuilderSupport builderSupport) {
return new ActionNothing(this);
}
@Nonnull
public BuilderActionNothing readConfig(JsonElement data) {
return this;
}
@Nonnull
public String getShortDescription() {
return "Do nothing";
}
@Nonnull
public String getLongDescription() {
return "Do nothing. Used often as placeholder.";
}
@Nonnull
public BuilderDescriptorState getBuilderDescriptorState() {
return BuilderDescriptorState.Stable;
}
}