Skip to content

Commit

Permalink
ci: maintenance 2023-10-28
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 28, 2023
1 parent f3f202d commit d4fd3d8
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CommonLibSF/include/RE/Starfield.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
#include "RE/B/BGSNativeTerminalForm.h"
#include "RE/B/BGSObjectInstance.h"
#include "RE/B/BGSObjectPlacementDefaults.h"
#include "RE/B/BGSOutfit.h"
#include "RE/B/BGSOverridePackCollection.h"
#include "RE/B/BGSPerk.h"
#include "RE/B/BGSPerkRankArray.h"
Expand All @@ -55,9 +56,11 @@
#include "RE/B/BGSSkinForm.h"
#include "RE/B/BGSSnapTemplateComponent.h"
#include "RE/B/BGSTerminal.h"
#include "RE/B/BGSTerminalMenu.h"
#include "RE/B/BGSTextureModel.h"
#include "RE/B/BGSTypedFormValuePair.h"
#include "RE/B/BGSTypedKeywordValueArray.h"
#include "RE/B/BGSVoiceType.h"
#include "RE/B/BSContainer.h"
#include "RE/B/BSExtraData.h"
#include "RE/B/BSFixedString.h"
Expand Down Expand Up @@ -177,6 +180,7 @@
#include "RE/T/TESBoundObject.h"
#include "RE/T/TESCamera.h"
#include "RE/T/TESCellFullyLoadedEvent.h"
#include "RE/T/TESClass.h"
#include "RE/T/TESContainer.h"
#include "RE/T/TESContainerChangedEvent.h"
#include "RE/T/TESDataHandler.h"
Expand All @@ -186,6 +190,7 @@
#include "RE/T/TESForm.h"
#include "RE/T/TESFormRefCount.h"
#include "RE/T/TESFullName.h"
#include "RE/T/TESGlobal.h"
#include "RE/T/TESHandleForm.h"
#include "RE/T/TESKey.h"
#include "RE/T/TESModel.h"
Expand Down
2 changes: 1 addition & 1 deletion CommonLibSF/include/RE/T/TESActorBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ namespace RE
public:
SF_RTTI_VTABLE(TESActorBase);

~TESActorBase() override; // 00
~TESActorBase() override; // 00

// add
virtual bool GetHasPLSpecTex() const; // 82
Expand Down
2 changes: 1 addition & 1 deletion CommonLibSF/include/RE/T/TESNPC.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ namespace RE
[[nodiscard]] TESRace* GetRace() const { return formRace; }

[[nodiscard]] SEX GetSex() const;
[[nodiscard]] bool ContainsKeyword(std::string_view a_editorID);
[[nodiscard]] bool ContainsKeyword(std::string_view a_editorID);
[[nodiscard]] bool HasKeyword(std::string_view a_editorID);
[[nodiscard]] bool IsInFaction(TESFaction* a_faction) const;

Expand Down
2 changes: 1 addition & 1 deletion CommonLibSF/src/RE/T/TESNPC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ namespace RE
return false;
}

bool TESNPC::IsInFaction(TESFaction* a_faction) const
bool TESNPC::IsInFaction(TESFaction* a_faction) const
{
return std::ranges::any_of(factions, [&](const auto& faction) {
return faction.faction == a_faction && faction.rank > -1;
Expand Down
2 changes: 1 addition & 1 deletion CommonLibSF/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"name": "commonlibsf",
"version-date": "2023-10-27.3",
"version-date": "2023-10-28",
"port-version": 0,
"description": "A collaborative reverse-engineered library for Starfield.",
"homepage": "https://github.com/Starfield-Reverse-Engineering/CommonLibSF",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![C++23](https://img.shields.io/static/v1?label=standard&message=c%2B%2B23&color=blue&logo=c%2B%2B&&logoColor=red&style=flat)](https://en.cppreference.com/w/cpp/compiler_support)
![Platform](https://img.shields.io/static/v1?label=platform&message=windows&color=dimgray&style=flat&logo=windows)
[![Game version](https://img.shields.io/badge/game%20version-1.7.36-orange)](#Developing-with-CommonLibSF)
[![VCPKG_VER](https://img.shields.io/static/v1?label=vcpkg%20registry&message=2023-10-27.3&color=green&style=flat)](https://github.com/Starfield-Reverse-Engineering/Starfield-RE-vcpkg)
[![VCPKG_VER](https://img.shields.io/static/v1?label=vcpkg%20registry&message=2023-10-28&color=green&style=flat)](https://github.com/Starfield-Reverse-Engineering/Starfield-RE-vcpkg)
[![Main CI](https://img.shields.io/github/actions/workflow/status/Starfield-Reverse-Engineering/CommonLibSF/main_ci.yml)](https://github.com/Starfield-Reverse-Engineering/CommonLibSF/actions/workflows/main_ci.yml)

## Build Dependencies
Expand Down

0 comments on commit d4fd3d8

Please sign in to comment.