diff --git a/ExtendedPlayerInventory/BepInExPlugin.cs b/ExtendedPlayerInventory/BepInExPlugin.cs index e733c6e..da07256 100644 --- a/ExtendedPlayerInventory/BepInExPlugin.cs +++ b/ExtendedPlayerInventory/BepInExPlugin.cs @@ -69,7 +69,7 @@ private void Awake() nexusID.Value = 1356; - extraRows = Config.Bind("Toggles", "ExtraRows", 0, "Number of extra ordinary rows."); + extraRows = Config.Bind("Toggles", "ExtraRows", 2, "Number of extra ordinary rows."); addEquipmentRow = Config.Bind("Toggles", "AddEquipmentRow", true, "Add special row for equipped items and quick slots."); displayEquipmentRowSeparate = Config.Bind("Toggles", "DisplayEquipmentRowSeparate", true, "Display equipment and quickslots in their own area."); @@ -653,9 +653,9 @@ private static void SetElementPositions() if (hudRoot.Find("QuickAccessBar")?.GetComponent() != null) { if (quickAccessX.Value == 9999) - quickAccessX.Value = hudRoot.Find("healthpanel").GetComponent().anchoredPosition.x - 32; + quickAccessX.Value = hudRoot.Find("healthpanel").GetComponent().anchoredPosition.x + 170; if (quickAccessY.Value == 9999) - quickAccessY.Value = hudRoot.Find("healthpanel").GetComponent().anchoredPosition.y - 870; + quickAccessY.Value = hudRoot.Find("healthpanel").GetComponent().anchoredPosition.y - 1203; hudRoot.Find("QuickAccessBar").GetComponent().anchoredPosition = new Vector2(quickAccessX.Value, quickAccessY.Value); hudRoot.Find("QuickAccessBar").GetComponent().localScale = new Vector3(quickAccessScale.Value, quickAccessScale.Value, 1);