pick 97420a31d The big reformat of 2020

This commit is contained in:
yueh
2020-06-16 21:41:28 +02:00
parent 5304b3febe
commit 5225ea426b
2252 changed files with 95466 additions and 118582 deletions
@@ -18,7 +18,6 @@
package appeng.server.subcommands;
import com.google.common.base.Joiner;
import net.minecraft.command.CommandSource;
@@ -27,20 +26,17 @@ import net.minecraft.util.text.StringTextComponent;
import appeng.server.ISubCommand;
public class Supporters implements ISubCommand {
public class Supporters implements ISubCommand
{
@Override
public String getHelp(final MinecraftServer srv) {
return "commands.ae2.Supporters";
}
@Override
public String getHelp( final MinecraftServer srv )
{
return "commands.ae2.Supporters";
}
@Override
public void call( final MinecraftServer srv, final String[] data, final CommandSource sender )
{
final String[] who = { "Stig Halvorsen", "Josh Ricker", "Jenny \"Othlon\" Sutherland", "Hristo Bogdanov", "BevoLJ" };
sender.sendFeedback( new StringTextComponent( "Special thanks to " + Joiner.on( ", " ).join( who ) ), true );
}
@Override
public void call(final MinecraftServer srv, final String[] data, final CommandSource sender) {
final String[] who = { "Stig Halvorsen", "Josh Ricker", "Jenny \"Othlon\" Sutherland", "Hristo Bogdanov",
"BevoLJ" };
sender.sendFeedback(new StringTextComponent("Special thanks to " + Joiner.on(", ").join(who)), true);
}
}