1
0
mirror of https://github.com/ineedbots/iw5_bot_warfare.git synced 2025-06-28 15:11:49 +00:00

fix errors

This commit is contained in:
ineedbots
2021-10-24 02:42:28 -06:00
parent 6f479dd6cf
commit afbf583e3b
3 changed files with 13 additions and 3 deletions

View File

@ -36,8 +36,12 @@ destoryHPdraw()
{
self endon( "disconnect" );
self waittill( "death" );
self.drawHP destroy();
self.drawSpeed destroy();
if ( isDefined( self.drawHP ) )
self.drawHP destroy();
if ( isDefined( self.drawSpeed ) )
self.drawSpeed destroy();
}
initHPdraw()