In pCampbot PhysicsBehaviour.Close(), only cancel jumping if bot is connected
parent
9c3c9b7f5f
commit
b781a23c44
|
@ -80,7 +80,8 @@ namespace pCampBot
|
|||
|
||||
public override void Close()
|
||||
{
|
||||
Bot.Client.Self.Jump(false);
|
||||
if (Bot.ConnectionState == ConnectionState.Connected)
|
||||
Bot.Client.Self.Jump(false);
|
||||
}
|
||||
|
||||
private string[] readexcuses()
|
||||
|
|
Loading…
Reference in New Issue