Skip to content

Commit

Permalink
Spawn sets will restore their colors from save
Browse files Browse the repository at this point in the history
  • Loading branch information
thommcgrath committed Dec 29, 2023
1 parent fb02c9a commit 2466c21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project/Modules/Game Support/Ark/SpawnPointSet.xojo_code
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ Implements Beacon.Countable,Ark.Weighted
Set.LevelOffsetBeforeMultiplier = SaveData.Value(OffsetBeforeMultiplierKey)
End If

Var ColorSetKey As Variant = SaveData.FirstKey("colorSet", "color_set", "Color Set Class")
Var ColorSetKey As Variant = SaveData.FirstKey("colorSetClass", "color_set", "Color Set Class") // I'm not confident color_set was ever used
If ColorSetKey.IsNull = False Then
Set.ColorSetClass = SaveData.Value(ColorSetKey)
End If
Expand Down
2 changes: 1 addition & 1 deletion Project/Modules/Game Support/ArkSA/SpawnPointSet.xojo_code
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ Implements Beacon.Countable,ArkSA.Weighted
Set.LevelOffsetBeforeMultiplier = SaveData.Value(OffsetBeforeMultiplierKey)
End If

Var ColorSetKey As Variant = SaveData.FirstKey("colorSet", "color_set", "Color Set Class")
Var ColorSetKey As Variant = SaveData.FirstKey("colorSetClass", "color_set", "Color Set Class") // I'm not confident color_set was ever used
If ColorSetKey.IsNull = False Then
Set.ColorSetClass = SaveData.Value(ColorSetKey)
End If
Expand Down

0 comments on commit 2466c21

Please sign in to comment.