Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMulhima committed Dec 27, 2022
1 parent 43c21c0 commit 6c11d8c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
1 change: 0 additions & 1 deletion BetterMenus/Blueprints/FloatInputField.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ public static InputField FloatInputField(string name, Action<float> _storeValue,
}
else
{
_storeValue(_defaultValue);
if (s != string.Empty)
{
Satchel.Instance.LogWarn($"Inputted value {s} is not a valid float in {name} input field");
Expand Down
6 changes: 1 addition & 5 deletions BetterMenus/Blueprints/IntInputField.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,7 @@ public static InputField IntInputField(string name, Action<int> _storeValue, Fun
}
else
{
if (s == string.Empty)
{
_storeValue(_defaultValue);
}
else
if (s != string.Empty)
{
Satchel.Instance.LogWarn($"Inputted value {s} is not a valid integer in {name} input field");
}
Expand Down
2 changes: 1 addition & 1 deletion Utils/AssemblyUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public static class AssemblyUtils{
/// <summary>
/// Version of this Assembly
/// </summary>
public static string ver = "0.8.9";
public static string ver = "0.8.10";
/// <summary>
/// Gets Version string
/// </summary>
Expand Down

0 comments on commit 6c11d8c

Please sign in to comment.