// 
// Decompiled by Procyon v0.6.0
// 

package com.hypixel.hytale.server.core.modules.interaction.commands;

import com.hypixel.hytale.server.core.modules.interaction.interaction.config.none.SelectInteraction;
import com.hypixel.hytale.server.core.Message;
import javax.annotation.Nonnull;
import com.hypixel.hytale.server.core.command.system.CommandContext;
import com.hypixel.hytale.server.core.command.system.AbstractCommand;
import com.hypixel.hytale.server.core.command.system.basecommands.CommandBase;

public class InteractionSnapshotSourceCommand extends CommandBase
{
    public InteractionSnapshotSourceCommand() {
        super("snapshotsource", "server.commands.interaction.snapshotSource.desc");
        this.addSubCommand(new InteractionSetSnapshotSourceCommand());
    }
    
    @Override
    protected void executeSync(@Nonnull final CommandContext context) {
        context.sendMessage(Message.translation("server.commands.interaction.snapshotSource.get").param("source", SelectInteraction.SNAPSHOT_SOURCE.name()));
    }
}
