Merge pull request #83 from zekodef/master

Airport travel bugfixes
This commit is contained in:
Lorenc Pekaj 2019-10-07 12:02:23 +11:00 committed by GitHub
commit 5cf5c67a89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5670,9 +5670,9 @@ public OnDialogResponse( playerid, dialogid, response, listitem, inputtext[ ] )
if ( IsPlayerJailed( playerid ) ) return SendError( playerid, "You cannot travel while you're in jail." );
if ( p_WantedLevel[ playerid ] ) return SendError( playerid, "You cannot travel while you are wanted." );
if ( GetPlayerCash( playerid ) < AIR_TRAVEL_COST ) return SendError( playerid, "You need %s to travel between cities.", cash_format( AIR_TRAVEL_COST ) );
if ( !(( GetPlayerCash( playerid ) >= AIR_TRAVEL_COST ) || ( GetPlayerCasinoRewardsPoints( playerid ) >= 5.0 )) ) return SendError( playerid, "You need %s to travel between cities.", cash_format( AIR_TRAVEL_COST ) );
new bool: using_rewards = GetPlayerCasinoRewardsPoints( playerid ) > 5.0;
new bool: using_rewards = GetPlayerCasinoRewardsPoints( playerid ) >= 5.0;
// set position
switch ( listitem )