Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
badhaloninja committed Sep 12, 2022
1 parent 94c4f33 commit 6cf4184
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions NeosModSettings/NeosModSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ public class NeosModSettings : NeosMod
{
public override string Name => "NeosModSettings";
public override string Author => "badhaloninja";
public override string Version => "1.2.0";
public override string Version => "1.2.1";
public override string Link => "https://github.com/badhaloninja/NeosModSettings";

[AutoRegisterConfigKey]
private readonly ModConfigurationKey<float> ITEM_HEIGHT = new ModConfigurationKey<float>("itemHeight", "Determines height of config items like this one. You need to click on another page for it to apply.", () => 24);
[AutoRegisterConfigKey]
private readonly ModConfigurationKey<bool> SHOW_INTERNAL = new ModConfigurationKey<bool>("showInternal", "Wether to show internal use only config options, their text will be yellow.", () => false);
private readonly ModConfigurationKey<bool> SHOW_INTERNAL = new ModConfigurationKey<bool>("showInternal", "Whether to show internal use only config options, their text will be yellow.", () => false);
[AutoRegisterConfigKey]
private readonly ModConfigurationKey<bool> SHOW_NAMES = new ModConfigurationKey<bool>("showNames", "Wether to show the internal key names next to descriptions.", () => false);
private readonly ModConfigurationKey<bool> SHOW_NAMES = new ModConfigurationKey<bool>("showNames", "Whether to show the internal key names next to descriptions.", () => false);

[AutoRegisterConfigKey]
private readonly ModConfigurationKey<bool> TEST_BOOL = new ModConfigurationKey<bool>("testBool", "Test Boolean", () => true);
Expand Down
4 changes: 2 additions & 2 deletions NeosModSettings/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.2.0.0")]
[assembly: AssemblyFileVersion("1.2.0.0")]
[assembly: AssemblyVersion("1.2.1.0")]
[assembly: AssemblyFileVersion("1.2.1.0")]

0 comments on commit 6cf4184

Please sign in to comment.