diff --git a/gamemodes/irresistible/cnr/features/weapon_drop.pwn b/gamemodes/irresistible/cnr/features/weapon_drop.pwn index c0b8acd..ffb0440 100644 --- a/gamemodes/irresistible/cnr/features/weapon_drop.pwn +++ b/gamemodes/irresistible/cnr/features/weapon_drop.pwn @@ -133,8 +133,8 @@ hook OnPlayerPickUpDynPickup( playerid, pickupid ) // Health Pickups if ( pickupid == g_HealthPickup ) { - SetPlayerHealth( playerid, 100.0 ); - return 1; + new Float: health; + if ( GetPlayerHealth( playerid, health ) <= 100 ) return SetPlayerHealth( playerid, 100.0 ); } // ignore if theres a delay