Fix mod for new game version

This commit is contained in:
2024-01-06 11:59:17 +01:00
parent 347a838704
commit 54b75a869d
3 changed files with 72 additions and 52 deletions

View File

@@ -12,10 +12,20 @@ namespace PriorityUX {
public static LocString TOOLTIP = "Used for reset and as a default priority";
public static LocString CATEGORY = "Tweaks";
}
public static class ENABLEPRIORITYHOTKEYSEVERYWHERE {
public static LocString NAME = "Enable priority keys everywhere";
public static LocString TOOLTIP = "Allows the 1-9 keys to select priority for all tools. Close the tool to open the building menus.";
public static LocString CATEGORY = "Tweaks";
public static class ENABLEKEYSFORBUILDING {
public static LocString NAME = "Enable priority keys in the build menu";
public static LocString TOOLTIP = "Allows the 1-9 keys to select priority in the building menu. Close the tool to open the building menus.";
public static LocString CATEGORY = "Toggles";
}
public static class DECONSTRUCTINHERITPRIORITY {
public static LocString NAME = "Use last priority for deconstruction";
public static LocString TOOLTIP = "Use the last priority for deconstruction. If disabled, the default priority will be used every time the menu is opened.";
public static LocString CATEGORY = "Toggles";
}
public static class ENABLEKEYSFORALLTOOLS {
public static LocString NAME = "Enable priority keys for all tools";
public static LocString TOOLTIP = "Will enable the 1-9 keys for all tools.";
public static LocString CATEGORY = "Toggles";
}
}
}