Skip to content

Commit

Permalink
Fix breaking /help command >.>
Browse files Browse the repository at this point in the history
  • Loading branch information
tterrag1098 committed Mar 30, 2014
1 parent f7e20bf commit 91ff497
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/tppitweaks/command/CommandTPPI.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import java.util.logging.Level;

import net.minecraft.command.CommandBase;
import net.minecraft.command.ICommand;
import net.minecraft.command.ICommandSender;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
Expand Down Expand Up @@ -317,6 +318,6 @@ public static String getProperName(String modid)
@Override
public int compareTo(Object arg0)
{
return 0; // wat
return this.compareTo((ICommand) arg0);
}
}

0 comments on commit 91ff497

Please sign in to comment.