[Bots/Mercs] Add 100% Hit chance if sitting while attacked. (#2839)

* [BOT] Add 100% Hit chance if sitting while attacked.

* [BOT] Add 100% Hit chance if sitting while attacked.

* Add Mercs correctly

* Missed usage of IsSitting() in Mob::RollD20
This commit is contained in:
Aeadoin
2023-02-06 22:30:33 -05:00
committed by GitHub
parent 158396937a
commit b0d1dc5f04
7 changed files with 15 additions and 9 deletions
+1 -1
View File
@@ -4292,7 +4292,7 @@ void Merc::Stand() {
SetAppearance(eaStanding);
}
bool Merc::IsSitting() {
bool Merc::IsSitting() const {
bool result = false;
if(GetAppearance() == eaSitting && !IsMoving())