Skip to content

Commit

Permalink
fix ParamDB generation
Browse files Browse the repository at this point in the history
  • Loading branch information
shibbo committed Nov 6, 2023
1 parent d98eacd commit 0f1ad3b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Fushigi/param/ParamDB.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ public static void Load()
SARC.SARC sarc = new SARC.SARC(new MemoryStream(fileBytes));

/* /Component/Blackboard/BlackboardParamTable is where all of the actor-specific parameters live */
string actorParamDir = Path.Combine("Component", "Blackboard", "BlackboardParamTable");
string actorParamDir = "Component/Blackboard/BlackboardParamTable";
//string actorParamDir = //Path.Combine("Component", "Blackboard", "BlackboardParamTable");

if (!sarc.DirectoryExists(actorParamDir))
{
Expand Down

0 comments on commit 0f1ad3b

Please sign in to comment.