From c266b0fd46c5c1b8f5aa7cc5490f8ceda31a4939 Mon Sep 17 00:00:00 2001 From: Anton Tarasenko Date: Mon, 6 Jun 2022 04:04:15 +0700 Subject: [PATCH] Change `packages` arg to optional in `CoreService` --- sources/CoreService.uc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sources/CoreService.uc b/sources/CoreService.uc index a849275..f683139 100644 --- a/sources/CoreService.uc +++ b/sources/CoreService.uc @@ -71,7 +71,9 @@ protected function OnCreated() * Using array of `string`s since Acedia's `Text` wouldn't yet * be available. */ -public final static function LaunchAcedia(Actor source, array packages) +public final static function LaunchAcedia( + Actor source, + optional array packages) { default.packagesToLoad = packages; default.blockSpawning = false;