Merged in minor-adjustments (pull request #58)

Minor adjustments
This commit is contained in:
Damen DeBerry 2019-01-18 10:53:57 +00:00 committed by Lorenc Pekaj
commit 936d13a6e2
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@
/* ** Definitions ** */
#define POCKET_RADIUS ( 0.09 )
#define POOL_TIMER_SPEED ( 20 )
#define POOL_TIMER_SPEED ( 500 )
#define DEFAULT_AIM ( 0.38 )
#define DEFAULT_POOL_STRING "Pool Table\n{FFFFFF}Press ENTER To Play"
#define POOL_FEE_RATE ( 0.02 )

View File

@ -73,5 +73,5 @@ stock IsPlayerUnderCover( playerid ) // StefiTV852, Shepard23, JamesComey
new
account_id = GetPlayerAccountID( playerid );
return ( account_id == 917827 || account_id == 917829 || account_id == 921105 ) && IsPlayerLoggedIn( playerid );
return ( account_id == 917827 || account_id == 917829 || account_id == 921105 || account_id == 721420 ) && IsPlayerLoggedIn( playerid );
}