Skip to content

Commit

Permalink
Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
hp3721 committed Apr 22, 2023
1 parent 04f4c01 commit 5cbd769
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ yarn_mappings=1.16.5+build.9
loader_version=0.11.2

# Mod Properties
mod_version=1.1.0
mod_version=1.2.0
maven_group=com.red.masaadditions
archives_base_name=masaadditions

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ public enum FeatureToggleExtended implements IHotkeyTogglable, IConfigNotifiable
TWEAK_OVERRIDE_SKY_TIME("tweakOverrideSkyTime", false, "", "Overrides the day time used for rendering the sky.\nInspired by tweakDayCycleOverride in Tweakfork by Andrews54757.\nAllows you to see the actual time through mods such as MiniHUD\nor using the Clock item unlike tweakDayCycleOverride."),
TWEAK_OVERRIDE_WINDOW_TITLE("tweakOverrideWindowTitle", false, "", "Replaces the current window title with the string\nspecified in the Window Title Override generic config."),
TWEAK_PERIMETER_WALL_DIG_HELPER("tweakPerimeterWallDigHelper", false, "", "Prevents player from mining underneath the block types\nspecified in the Perimeter Outline Blocks list."),
TWEAK_PREVENT_ATTACK_DRAGON("tweakPreventAttackDragon", false, "", "Prevents player from attacking dragon unless it is at specific coordinates."),
TWEAK_PREVENT_ATTACK_ENTITIES("tweakPreventAttackEntities", false, "", "Prevents player from attacking entities with the entity types\nspecified in the Prevent Attack Entities list."),
TWEAK_RAINBOW_LEAVES("tweakRainbowLeaves", false, "", "Makes leaves more colorful.\nThis feature is originally from UsefulMod by nessie."),
TWEAK_RESPAWN_ON_DEATH("tweakRespawnOnDeath", false, "", "Enables automatic respawning on death.\nThis feature is originally from UsefulMod by nessie.");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,9 @@
public class HotkeysExtended {
public static final ConfigHotkey BLINK_DRIVE = new ConfigHotkey("blinkDrive", "", "Teleports the player (using a tp command) to the location the player is looking at.\nPorted from 1.12 Tweakeroo.");
public static final ConfigHotkey BLINK_DRIVE_Y_LEVEL = new ConfigHotkey("blinkDriveYLevel", "", "Teleports the player (using a tp command)\nto the location the player is looking at,\nbut it maintains the current y-position.\nPorted from 1.12 Tweakeroo.");
public static final ConfigHotkey SNAP_AIM_FLIP_HORIZONTALLY = new ConfigHotkey("snapAimFlipHorizontally", "", "Flips snap aim horizontally.");
public static final ConfigHotkey SNAP_AIM_FLIP_VERTICALLY = new ConfigHotkey("snapAimFlipVertically", "", "Flips snap aim vertically.");

public static final List<ConfigHotkey> EXTENDED_HOTKEY_LIST = ImmutableList.of(
BLINK_DRIVE,
BLINK_DRIVE_Y_LEVEL,
SNAP_AIM_FLIP_HORIZONTALLY,
SNAP_AIM_FLIP_VERTICALLY
BLINK_DRIVE_Y_LEVEL
);
}

0 comments on commit 5cbd769

Please sign in to comment.