Added basic auto fishing

This commit is contained in:
ReinforceZwei 2020-03-22 20:12:06 +08:00 committed by ORelio
parent 850eae86d7
commit 51d03b9ced
11 changed files with 222 additions and 18 deletions

View file

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MinecraftClient.Commands
{
class UseItem : Command
{
public override string CMDName { get { return "useitem"; } }
public override string CMDDesc { get { return "useitem: Use (left click) an item on the hand"; } }
public override string Run(McTcpClient handler, string command)
{
handler.useItemOnHand();
return "Use an item";
}
}
}