Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
notfood committed Oct 19, 2021
1 parent ecc7933 commit d615237
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Patches/GameStateUpdatePatch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ static void Prefix()
{
ToggleGridOverride();
}
else if(Input.GetKeyDown(KeyCode.F12))
else if(Input.GetKeyDown(KeyCode.F11))
{
DisableAll();
}
Expand All @@ -37,7 +37,7 @@ static void ToggleColliderOverride()
{
UltimateBuilderMod.enableColliderOverride = !UltimateBuilderMod.enableColliderOverride;

NotifyChanged("Collition Override", UltimateBuilderMod.enableColliderOverride);
NotifyChanged("Collision Override", UltimateBuilderMod.enableColliderOverride);
}

static void ToggleGridOverride()
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This is an `Ultimate Chicken Horse` `BepInEx` mod that allows you to rotate piec
| F5 | Rotation |
| F9 | Collision |
| F10 | Grid |
| F12 | ALL OFF |
| F11 | ALL OFF |

| Key | Rotation |
| --- | --- |
Expand Down
2 changes: 1 addition & 1 deletion UltimateBuilderMod.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace UltimateBuilder
{
[BepInPlugin("notfood.UltimateBuilder", "UltimateBuilder", "1.0.0.0")]
[BepInPlugin("notfood.UltimateBuilder", "UltimateBuilder", "1.3.1.0")]
public class UltimateBuilderMod : BaseUnityPlugin
{
internal static bool enableRotationOverride = false;
Expand Down

0 comments on commit d615237

Please sign in to comment.