Skip to content

Commit 3886106

Browse files
Update README and bump version
1 parent 2532cc5 commit 3886106

5 files changed

Lines changed: 9 additions & 6 deletions

File tree

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,11 @@ Optional and compatible:
3636
- "Full Map": Shows all pins and the full map regardless of progression
3737
- "Mod Pins": Toggles the new pins on/off.
3838
- "Vanilla Pins": Toggles the game's existing pins on/off.
39-
- "Pin Size": Toggles the size of the new pins on/off.
39+
- "Pin Shape": Toggles the shape of the new pins.
40+
- "Pin Size": Toggles the size of the new pins.
4041
- "Customize Pins": Toggle each pool on/off.
42+
- "Fast Map Update (Normal Mode only)": When enabled and you have Quill, your map will update as soon as you enter a new room.
43+
- "UI Scale": Change the scaling of UI text and buttons.
4144

4245
# How To Install
4346
Use Scarab: https://github.com/fifty-six/Scarab

VanillaMapMod/UI/ModEnabledButton.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace VanillaMapMod.UI;
55

6-
public class ModEnabledButton : MainButton
6+
internal class ModEnabledButton : MainButton
77
{
88
protected override void OnClick()
99
{

VanillaMapMod/UI/ModeButton.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace VanillaMapMod.UI;
55

6-
public class ModeButton : MainButton
6+
internal class ModeButton : MainButton
77
{
88
protected override void OnClick()
99
{

VanillaMapMod/UI/VmmPauseMenu.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
namespace VanillaMapMod.UI;
66

7-
public class VmmPauseMenu : PauseMenuLayout
7+
internal class VmmPauseMenu : PauseMenuLayout
88
{
9-
public VmmPauseMenu()
9+
internal VmmPauseMenu()
1010
: base(nameof(VanillaMapMod), nameof(VmmPauseMenu)) { }
1111

1212
protected override bool ActiveCondition()

VanillaMapMod/VanillaMapMod.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public VanillaMapMod()
2626

2727
public override string GetVersion()
2828
{
29-
return "2.1.5";
29+
return "2.1.6";
3030
}
3131

3232
public override int LoadPriority()

0 commit comments

Comments
 (0)