Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions BuildExpansion/BuildExpansionMod.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace BuildExpansion
public class BuildExpansionMod : BaseUnityPlugin
{
public const string ID = "mixone.valheimplus.buildexpansion";
public const string version = "1.0.8";
public const string version = "1.0.9";

public static ConfigEntry<int> maxGridHeight;
public static ConfigEntry<int> newGridWidth;
Expand All @@ -28,11 +28,11 @@ public class BuildExpansionMod : BaseUnityPlugin
public void Awake()
{
maxGridHeight = Config.Bind("General.Constants", "MaxGridHeight", 15, "Sets a maximum value for grid height, if over 50 can impact performance.");
newGridWidth = Config.Bind("General", "GridWidth", 10, "Width in number of columns of the build grid, maximum value of 10.");
newGridWidth = Config.Bind("General", "GridWidth", 13, "Width in number of columns of the build grid, maximum value of 13.");
disableScrollCategories = Config.Bind("General.Toggles", "DisableScrollCategories", true, "Should the mousewheel stop scrolling categories, RECOMMEND TRUE.");
isEnabled = Config.Bind("General.Toggles", "EnableExpansion", true, "Whether or not to expand the build grid.");
if (newGridWidth.Value > 10)
newGridWidth.Value = 10;
if (newGridWidth.Value > 13)
newGridWidth.Value = 13;
harmony = new Harmony(ID);
harmony.PatchAll();
buildFilterLogger = Logger;
Expand Down