Added IsPlayerCrawling function #9

Merged
jadis0x merged 1 commits from patch-2 into master 2022-07-22 10:36:45 +00:00
Showing only changes of commit 9559f21885 - Show all commits

View File

@@ -26,5 +26,17 @@
}
return null;
}
public static bool IsPlayerCrawling()
{
NolanBehaviour nb = Player.GetPlayer();
if (nb.IsCrawling())
{
return true;
}
return false;
}
}
}