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 b4f93602ef
commit e4535e09a0
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();
}
}