/* * Decompiled with CFR 0.152. */ package net.minecraft.commands.execution.tasks; import net.minecraft.commands.ExecutionCommandSource; import net.minecraft.commands.execution.EntryAction; import net.minecraft.commands.execution.ExecutionContext; import net.minecraft.commands.execution.Frame; public class FallthroughTask> implements EntryAction { private static final FallthroughTask> INSTANCE = new FallthroughTask(); public static > EntryAction instance() { return INSTANCE; } @Override public void execute(ExecutionContext context, Frame frame) { frame.returnFailure(); frame.discard(); } }