bug fixes for paintball module
This commit is contained in:
parent
896302c2be
commit
d7e803acc9
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* Irresistible Gaming (c) 2018
|
* Irresistible Gaming (c) 2018
|
||||||
* Developed by Steven Howard
|
* Developed by Lorenc Pekaj, Steven Howard
|
||||||
* Module: cnr/features/paintball.pwn
|
* Module: cnr/features/paintball.pwn
|
||||||
* Purpose: paintball related features
|
* Purpose: paintball related features
|
||||||
*/
|
*/
|
||||||
@ -65,7 +65,7 @@ hook OnPlayerDeathEx(playerid, killerid, reason, Float: damage, bodypart)
|
|||||||
hook OnPlayerDeath( playerid, killerid, reason )
|
hook OnPlayerDeath( playerid, killerid, reason )
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
if ( p_inPaintBall{ killerid } == true )
|
if ( IsPlayerConnected( killerid ) && p_inPaintBall{ killerid } == true )
|
||||||
{
|
{
|
||||||
new
|
new
|
||||||
a = p_PaintBallArena{ killerid };
|
a = p_PaintBallArena{ killerid };
|
||||||
@ -75,9 +75,8 @@ hook OnPlayerDeath(playerid, killerid, reason)
|
|||||||
SetPlayerHealth( killerid, g_paintballData[ a ] [ E_HEALTH ] );
|
SetPlayerHealth( killerid, g_paintballData[ a ] [ E_HEALTH ] );
|
||||||
SetPlayerArmour( killerid, g_paintballData[ a ] [ E_ARMOUR ] );
|
SetPlayerArmour( killerid, g_paintballData[ a ] [ E_ARMOUR ] );
|
||||||
}
|
}
|
||||||
return 1;
|
return Y_HOOKS_BREAK_RETURN_1;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user