From 6dd49fb69ac6c3d7db78f7edd7d9ccd445e674d5 Mon Sep 17 00:00:00 2001 From: Kae <80987908+Novaenia@users.noreply.github.com> Date: Wed, 24 Jul 2024 18:18:52 +1000 Subject: [PATCH] make missing packed.pak instructions slightly more verbose ffs. TODO: prompt automatic copy if it detects an existing install --- source/game/StarRoot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/game/StarRoot.cpp b/source/game/StarRoot.cpp index 235a1df..626e298 100644 --- a/source/game/StarRoot.cpp +++ b/source/game/StarRoot.cpp @@ -683,7 +683,7 @@ StringList Root::scanForAssetSources(StringList const& directories, StringList c dependencySortVisit(*requirement); else throw StarException(strf("Asset source '{}' is missing dependency '{}'{}", *source->name, requirementName, - requirementName != "base" ? "" : "\n\n(The base Starbound asset package could not be found, please copy it from another Starbound install!)\n")); + requirementName != "base" ? "" : "\n\nThe base Starbound asset package could not be found, please copy it from another Starbound install!\n(Locate 'packed.pak' in vanilla Starbound's assets folder, then copy it to OpenStarbound's assets folder.)\n")); } workingSet.remove(source);