Initial 1.9 commit

This DOES NOT BUILD. Do not even attempt.

Almost everything has been ported besides the block/item packages. Then it's a matter of testing what broke.
This commit is contained in:
Nick 2016-03-17 13:00:44 -07:00
parent f896383fe6
commit 6c729db70c
359 changed files with 1858 additions and 4447 deletions

View file

@ -7,7 +7,8 @@ import WayofTime.bloodmagic.command.sub.SubCommandOrb;
import WayofTime.bloodmagic.util.helper.TextHelper;
import net.minecraft.command.CommandBase;
import net.minecraft.command.ICommandSender;
import net.minecraft.util.ChatComponentText;
import net.minecraft.server.MinecraftServer;
import net.minecraft.util.text.TextComponentString;
import java.util.*;
@ -55,7 +56,7 @@ public class CommandBloodMagic extends CommandBase
}
@Override
public void processCommand(ICommandSender commandSender, String[] args)
public void execute(MinecraftServer server, ICommandSender commandSender, String[] args)
{
if (args.length > 0 && subCommands.containsKey(args[0]))
{
@ -65,7 +66,7 @@ public class CommandBloodMagic extends CommandBase
subCommand.processSubCommand(commandSender, subArgs);
} else
{
commandSender.addChatMessage(new ChatComponentText(TextHelper.localizeEffect("commands.error.unknown")));
commandSender.addChatMessage(new TextComponentString(TextHelper.localizeEffect("commands.error.unknown")));
}
}