Move lang and commands to Gaea

This commit is contained in:
dfsek
2020-10-10 17:26:54 -07:00
parent 59e1d6f146
commit 8e1dd75ae9
49 changed files with 234 additions and 424 deletions

View File

@@ -1,18 +1,22 @@
package com.dfsek.terra.command;
import com.dfsek.terra.command.type.Command;
import com.dfsek.terra.command.type.WorldCommand;
import com.dfsek.terra.config.lang.LangUtil;
import com.dfsek.terra.generation.TerraChunkGenerator;
import org.bukkit.World;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import org.jetbrains.annotations.NotNull;
import org.polydev.gaea.command.Command;
import org.polydev.gaea.command.WorldCommand;
import java.util.Collections;
import java.util.List;
public class SaveDataCommand extends WorldCommand {
public SaveDataCommand(Command parent) {
super(parent);
}
@Override
public String getName() {
return "save-data";