From 48e261bb91333e5522553d126f0a03a4ae1487ac Mon Sep 17 00:00:00 2001 From: Dane Everitt Date: Thu, 16 Mar 2017 19:59:24 -0400 Subject: [PATCH] closes #288 --- CHANGELOG.md | 1 + database/seeds/SourceServiceTableSeeder.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2841bb7f..5e2a117db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ This project follows [Semantic Versioning](http://semver.org) guidelines. * `[pre.4]` — Fixes `Server::byUuid()` caching to actually clear the cache for *all* users, rather than the logged in user by using cache tags. * `[pre.4]` — Fixes server listing on frontend not displaying a page selector when more than 10 servers exist. * `[pre.4]` — Fixes non-admin users being unable to create personal API keys. +* Fixes bug where daemon was unable to register that certain games had fully booted and were ready to play on. ### Added * Ability to assign multiple allocations at once when creating a new server. diff --git a/database/seeds/SourceServiceTableSeeder.php b/database/seeds/SourceServiceTableSeeder.php index 08e941ed5..226387c1c 100644 --- a/database/seeds/SourceServiceTableSeeder.php +++ b/database/seeds/SourceServiceTableSeeder.php @@ -76,7 +76,7 @@ class SourceServiceTableSeeder extends Seeder 'name' => 'Custom Source Engine Game', 'description' => 'This option allows modifying the startup arguments and other details to run a custo SRCDS based game on the panel.', 'docker_image' => 'quay.io/pterodactyl/srcds', - 'config_startup' => '{"done": "Assigned anonymous gameserver", "userInteraction": []}', + 'config_startup' => '{"done": "gameserver Steam ID", "userInteraction": []}', 'config_files' => '{}', 'config_logs' => '{"custom": true, "location": "logs/latest.log"}', 'config_stop' => 'quit',