This commit is contained in:
Your Name
2020-08-18 15:03:40 -06:00
parent 0106fab764
commit a130a9ecb0
4 changed files with 39 additions and 31 deletions

View File

@ -1078,7 +1078,7 @@ grenade_danager()
curWeap = self GetCurrentWeapon();
if (!isWeaponDroppable(curWeap))
if (!isWeaponPrimary(curWeap))
continue;
myEye = self getEye();
@ -2138,7 +2138,7 @@ knife(ent, knifeDist)
curWeap = self GetCurrentWeapon();
if (!isWeaponDroppable(curWeap))
if (!isWeaponPrimary(curWeap))
return;
if (self.bot.knifing || self.bot.isfraggingafter)
@ -2316,7 +2316,7 @@ botThrowGrenade(grenName)
curWeap = self GetCurrentWeapon();
if (!isWeaponDroppable(curWeap))
if (!isWeaponPrimary(curWeap))
return "cur weap is not droppable";
if (self.bot.knifingafter)