Skip to content

Commit 91ce97a

Browse files
committed
Fix missing service file, closes pterodactyl#390
1 parent de436d3 commit 91ce97a

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@ This file is a running track of new features and fixes to each version of the pa
33

44
This project follows [Semantic Versioning](http://semver.org) guidelines.
55

6-
## v0.6.0-beta.3 (Courageous Carniadactylus)
6+
## v0.6.0-beta.2.1 (Courageous Carniadactylus)
77
### Fixed
88
* `[beta.2]` — Suspended servers now show as suspended.
99
* `[beta.2]` — Corrected the information when a task has not run yet.
1010
* `[beta.2]` — Fixes filemanager 404 when editing a file within a directory.
1111
* `[beta.2]` — Fixes exception in tasks when deleting a server.
12+
* `[beta.2]` — Fixes bug with Terarria and Voice servers reporting a `TypeError: Service is not a constructor` in the daemon due to a missing service configuration.
1213

1314
## v0.6.0-beta.2 (Courageous Carniadactylus)
1415
### Fixed

database/seeds/TerrariaServiceTableSeeder.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ private function addCoreService()
6363
'name' => 'Terraria',
6464
'description' => 'Terraria is a land of adventure! A land of mystery! A land that\'s yours to shape, defend, and enjoy. Your options in Terraria are limitless. Are you an action gamer with an itchy trigger finger? A master builder? A collector? An explorer? There\'s something for everyone.',
6565
'startup' => 'mono TerrariaServer.exe -port {{SERVER_PORT}} -autocreate 2 -worldname World',
66+
'index_file' => Service::defaultIndexFile(),
6667
]);
6768
}
6869

database/seeds/VoiceServiceTableSeeder.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ private function addCoreService()
6363
'name' => 'Voice Servers',
6464
'description' => 'Voice servers such as Mumble and Teamspeak 3.',
6565
'startup' => '',
66+
'index_file' => Service::defaultIndexFile(),
6667
]);
6768
}
6869

0 commit comments

Comments
 (0)