From 7cb286c65984d412f95ca1d58e6ff21acdca4693 Mon Sep 17 00:00:00 2001 From: Refringe Date: Sun, 13 Jul 2025 14:38:50 -0400 Subject: [PATCH] Updates `ModID` property to `ModGuid` (#480) * Updates `ModID` property to `ModGuid` This will better align with what it's referred to elsewhere. * Updated `ModGuid` Docblock Updated the `ModGuid` docblock to reference the ideal use of reverse domain name notation. * Updated `summary` to use `see` tag for reference link * Updated `summary` to include line break * Updated `summary` to include HTML line break --- .../Models/Spt/Mod/AbstractModMetadata.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Mod/AbstractModMetadata.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Mod/AbstractModMetadata.cs index f0b8f32a..8a363e4a 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Mod/AbstractModMetadata.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Mod/AbstractModMetadata.cs @@ -8,9 +8,12 @@ public abstract record AbstractModMetadata { /// - /// A unique ID value for the mod to distinguish it from others + /// A Global Unique ID (GUID) to distinguish this mod from all others. + ///
+ /// It is recommended (but not mandatory) to use + /// reverse domain name notation. ///
- public abstract string ModId { get; set; } + public abstract string ModGuid { get; set; } /// /// Name of this mod