Skip to content

Commit

Permalink
Closes #5: Fixed update 3 rename ContextInfo.HeaderText->Header
Browse files Browse the repository at this point in the history
  • Loading branch information
Maverik committed Feb 24, 2024
1 parent db6b303 commit 8a127d2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions DeconstructLoadout/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# 🔖 CHANGELOG

## 0.0.4
- Fix for update 3 code changes

## 0.0.3
- Linked to Maverik-MavsCoreLibrary-0.0.3

Expand Down
2 changes: 1 addition & 1 deletion DeconstructLoadout/DeconstructLoadout.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ static void ShipLoadoutInitializeShipPostfix(GameObject __result)
case ShieldModule:
cell.BuildingConstraints.allowDeconstruction = true;
BuildProcessController.Instance.DeconstructModule(cell);
Logger.LogMessage($"{cell.ContextInfo.HeaderText} is being deconstructed: {cell.IsBeingDeconstructed}");
Logger.LogMessage($"{cell.ContextInfo.Header} is being deconstructed: {cell.IsBeingDeconstructed}");
break;
}
Expand Down
2 changes: 1 addition & 1 deletion DeconstructLoadout/DeconstructLoadout.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
<PropertyGroup>
<Title>Deconstruct Loadout</Title>
<Description>Automatically deconstruct ship's loadout as you spawn.</Description>
<Version>0.0.3</Version>
<Version>0.0.4</Version>
</PropertyGroup>
</Project>

1 comment on commit 8a127d2

@heaventwig
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's... all it needed? Amazing.

Please sign in to comment.