Merge pull request #9 from jadis0x/patch-2
Added IsPlayerCrawling function
This commit was merged in pull request #9.
This commit is contained in:
@@ -26,5 +26,17 @@
|
|||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static bool IsPlayerCrawling()
|
||||||
|
{
|
||||||
|
NolanBehaviour nb = Player.GetPlayer();
|
||||||
|
|
||||||
|
if (nb.IsCrawling())
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user