dprint("Warning: Attempted to reload a weapon that does not have the WEP_FLAG_RELOADABLE flag. Fix your code!\n");\r
return;\r
}\r
-\r
// return if reloading is disabled for this weapon\r
if(!self.reload_ammo_amount)\r
return;\r
-\r
+ // we can't reload weapons inside someone's stomach\r
+ if(self.predator.classname == "player")\r
+ return;\r
// our weapon is fully loaded, no need to reload\r
if (self.clip_load >= self.reload_ammo_amount)\r
return;\r
-\r
// no ammo, so nothing to load\r
if(!self.(self.current_ammo) && self.reload_ammo_min)\r
if not(self.items & IT_UNLIMITED_WEAPON_AMMO)\r