Skip to content

Commit 87e04e0

Browse files
committed
RW v1.10.1 (The Watcher)
1 parent 7401317 commit 87e04e0

4 files changed

Lines changed: 10 additions & 8 deletions

File tree

CollectionLabels/modinfo.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"id": "sabreml.collectionlabels",
33
"name": "Collection Labels",
4-
"version": "1.1.1",
5-
"target_game_version": "v1.9.15",
4+
"version": "1.1.2",
5+
"target_game_version": "v1.10.1",
66
"authors": "SabreML",
77
"description": "Adds a name/location to each item in the Collections menu, for spoiler-free collectible hunting!",
88
"requirements": ["moreslugcats"],
99
"requirements_names": ["More Slugcats Expansion"],
10-
"tags": ["Cosmetics"]
10+
"tags": ["Cosmetics", "Downpour"]
1111
}

Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Reflection;
2-
using System.Runtime.CompilerServices;
32
using System.Runtime.InteropServices;
3+
using CollectionLabels;
44

55
// General Information about an assembly is controlled through the following
66
// set of attributes. Change these attribute values to modify the information
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion(CollectionLabelsMod.VERSION)]
36+
[assembly: AssemblyFileVersion(CollectionLabelsMod.VERSION)]

src/CollectionLabelsMod.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@
1212

1313
namespace CollectionLabels
1414
{
15-
[BepInPlugin("sabreml.collectionlabels", "CollectionLabels", "1.1.1")]
15+
[BepInPlugin("sabreml.collectionlabels", "CollectionLabels", VERSION)]
1616
public class CollectionLabelsMod : BaseUnityPlugin
1717
{
18+
public const string VERSION = "1.1.2";
19+
1820
// A list of pearl names/locations. (E.g. "[Shoreline pearl 1]", "[Chimney Canopy pearl]", etc.)
1921
private List<string> pearlNames;
2022
// A list of chatlog names/locations. (E.g. "[Sky Islands transmission 2]", "[Garbage Wastes transmission 1]", etc.)

src/LinearChatlogHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public static bool Load()
4747
private static void ParseData(DeathPersistentSaveData deathPersistentSaveData, MiscWorldSaveData miscWorldSaveData)
4848
{
4949
PlayerIsPostPebbles = miscWorldSaveData.SSaiConversationsHad > 0;
50-
string[] spearmasterRegions = SlugcatStats.getSlugcatStoryRegions(MoreSlugcatsEnums.SlugcatStatsName.Spear);
50+
List<string> spearmasterRegions = SlugcatStats.SlugcatStoryRegions(MoreSlugcatsEnums.SlugcatStatsName.Spear);
5151

5252
// Make a new dict based on `regionGreyTokens` with only the spearmaster regions, and with all 'unique' (coloured) chatlogs removed.
5353
AllChatlogs = RWCustom.Custom.rainWorld.regionGreyTokens

0 commit comments

Comments
 (0)