1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 07:13:58 -05:00

Patch game interface (#305)

* remove extra set of parentheses in call to DisplaypopupsWaiter()

* add missing event argument in call to GotoCoordImpl()

* remove event arg from GotoCoordImpl() in t6 to match other game interface scripts
This commit is contained in:
INSANEMODE
2023-06-02 11:44:36 -05:00
committed by GitHub
parent b1ac32df80
commit f633d47762
2 changed files with 2 additions and 2 deletions

View File

@ -302,7 +302,7 @@ GotoImpl( event, data )
}
}
GotoCoordImpl( event, data )
GotoCoordImpl( data )
{
if ( !IsAlive( self ) )
{

View File

@ -12,7 +12,7 @@ OnPlayerConnect()
for ( ;; )
{
level waittill( "connecting", player );
player thread DisplaypopupsWaiter()();
player thread DisplaypopupsWaiter();
}
}