Browse Source

Change `packages` arg to optional in `CoreService`

pull/8/head
Anton Tarasenko 2 years ago
parent
commit
c266b0fd46
  1. 4
      sources/CoreService.uc

4
sources/CoreService.uc

@ -71,7 +71,9 @@ protected function OnCreated()
* Using array of `string`s since Acedia's `Text` wouldn't yet * Using array of `string`s since Acedia's `Text` wouldn't yet
* be available. * be available.
*/ */
public final static function LaunchAcedia(Actor source, array<string> packages) public final static function LaunchAcedia(
Actor source,
optional array<string> packages)
{ {
default.packagesToLoad = packages; default.packagesToLoad = packages;
default.blockSpawning = false; default.blockSpawning = false;

Loading…
Cancel
Save