add_favorite
command to accept an optional password as a second parameter. Also updates existing favorites. Example: add_favorite "1.2.3.4" "Hunter2"
Adds config variable cl_save_server_passwords 0/1
for this new UI:
!screenshot_2020-01-22_17-52-13
Password is stored once you successfully connect to a password protected server and password saving is enabled. Passwor...if(!gameWorld.paused)
Tick + TickDefered
else if(gameController.paused)
TickPaused
to
if(gameWorld.paused || gameController.paused)
TickPaused
else
Tick + TickDefered
The first one doesn't call TickPaused when just the world is paused, e.g. at the end of a game, which results in projectiles still moving but not interacting with the world (closes #1991).