Comment improvements
Made various variables static / readonly
This commit is contained in:
@@ -23,7 +23,7 @@ public class HideoutCraftQuestIdGenerator(
|
||||
IEnumerable<IOnLoad> _onLoadComponents
|
||||
)
|
||||
{
|
||||
private readonly HashSet<string> _blacklistedProductions =
|
||||
private static readonly HashSet<string> _blacklistedProductions =
|
||||
[
|
||||
"6617cdb6b24b0ea24505f618", // Old event quest production "Radio Repeater" alt recipe
|
||||
"66140c4a9688754de10dac07", // Old event quest production "Documents with decrypted data"
|
||||
@@ -32,7 +32,7 @@ public class HideoutCraftQuestIdGenerator(
|
||||
"67093210d514d26f8408612b" // Old event quest production "TG-Vi-24 true vaccine"
|
||||
];
|
||||
|
||||
private readonly Dictionary<string, string> _forcedQuestToProductionAssociations = new()
|
||||
private static readonly Dictionary<string, string> _forcedQuestToProductionAssociations = new()
|
||||
{
|
||||
// KEY = PRODUCTION, VALUE = QUEST
|
||||
{ "63a571802116d261d2336cd1", "625d6ffaf7308432be1d44c5" } // Network Provider - Part 2
|
||||
|
||||
Reference in New Issue
Block a user