Skip to content

Commit

Permalink
add EnderChest previews
Browse files Browse the repository at this point in the history
  • Loading branch information
sakura-ryoko committed Nov 14, 2024
1 parent 7c71f77 commit 35acfd1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ author = masa
mod_file_name = tweakeroo-fabric

# Current mod version
mod_version = 0.21.52
mod_version = 0.21.53-sakura.1

# Required malilib version
malilib_version = 0.21.1
malilib_id = 7d6bd0b3bc
malilib_version = 0.21.2-sakura.1
malilib_id = dead5697c6

# Minecraft, Fabric Loader and API and mappings versions
minecraft_version_out = 1.21
Expand Down
1 change: 1 addition & 0 deletions src/main/java/fi/dy/masa/tweakeroo/config/Configs.java
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ public static class Generic
public static final ConfigInteger SCULK_SENSOR_PULSE_LENGTH = new ConfigInteger ("sculkSensorPulseLength", 40, 0, 10000, "tweakeroo.config.generic.comment.sculkSensorPulseLength").translatedName("tweakeroo.config.generic.name.sculkSensorPulseLength");
public static final ConfigInteger SERVER_NBT_REQUEST_RATE = new ConfigInteger ("serverNbtRequestRate", 2, "tweakeroo.config.generic.comment.serverNbtRequestRate").translatedName("tweakeroo.config.generic.name.serverNbtRequestRate");
public static final ConfigBoolean SHULKER_DISPLAY_BACKGROUND_COLOR = new ConfigBoolean ("shulkerDisplayBgColor", true, "tweakeroo.config.generic.comment.shulkerDisplayBgColor").translatedName("tweakeroo.config.generic.name.shulkerDisplayBgColor");
public static final ConfigBoolean SHULKER_DISPLAY_ENDER_CHEST = new ConfigBoolean ("shulkerDisplayEnderChest", false, "tweakeroo.config.generic.comment.shulkerDisplayEnderChest").translatedName("tweakeroo.config.generic.name.shulkerDisplayEnderChest");
public static final ConfigBoolean SHULKER_DISPLAY_REQUIRE_SHIFT = new ConfigBoolean ("shulkerDisplayRequireShift", true, "tweakeroo.config.generic.comment.shulkerDisplayRequireShift").translatedName("tweakeroo.config.generic.name.shulkerDisplayRequireShift");
public static final ConfigBoolean SLOT_SYNC_WORKAROUND = new ConfigBoolean ("slotSyncWorkaround", true, "tweakeroo.config.generic.comment.slotSyncWorkaround").translatedName("tweakeroo.config.generic.name.slotSyncWorkaround");
public static final ConfigBoolean SLOT_SYNC_WORKAROUND_ALWAYS = new ConfigBoolean ("slotSyncWorkaroundAlways", false, "tweakeroo.config.generic.comment.slotSyncWorkaroundAlways").translatedName("tweakeroo.config.generic.name.slotSyncWorkaroundAlways");
Expand Down
2 changes: 2 additions & 0 deletions src/main/resources/assets/tweakeroo/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
"tweakeroo.config.generic.name.renderLimitXPOrb": "renderLimitXPOrb",
"tweakeroo.config.generic.name.sculkSensorPulseLength": "sculkSensorPulseLength",
"tweakeroo.config.generic.name.shulkerDisplayBgColor": "shulkerDisplayBgColor",
"tweakeroo.config.generic.name.shulkerDisplayEnderChest": "shulkerDisplayEnderChest",
"tweakeroo.config.generic.name.shulkerDisplayRequireShift": "shulkerDisplayRequireShift",
"tweakeroo.config.generic.name.slotSyncWorkaround": "slotSyncWorkaround",
"tweakeroo.config.generic.name.slotSyncWorkaroundAlways": "slotSyncWorkaroundAlways",
Expand Down Expand Up @@ -150,6 +151,7 @@
"tweakeroo.config.generic.comment.renderLimitXPOrb": "Maximum number of XP orb entities rendered per frame.\nUse -1 for normal behaviour, ie. to disable this limit.",
"tweakeroo.config.generic.comment.sculkSensorPulseLength": "The pulse length for Sculk Sensors, if the 'tweakSculkPulseLength' tweak is enabled.",
"tweakeroo.config.generic.comment.shulkerDisplayBgColor": "Enables tinting/coloring the Shulker Box display\nbackground texture with the dye color of the box",
"tweakeroo.config.generic.comment.shulkerDisplayEnderChest": "Enables Ender Chest display similar to the Shulker Box Display.",
"tweakeroo.config.generic.comment.shulkerDisplayRequireShift": "Whether or not holding shift is required for the Shulker Box preview",
"tweakeroo.config.generic.comment.slotSyncWorkaround": "This prevents the server from overriding the durability or\nstack size on items that are being used quickly for example\nwith the fast right click tweak.",
"tweakeroo.config.generic.comment.slotSyncWorkaroundAlways": "Enables the slot sync workaround at all times when the use key\nis held, not only when using fast right click or fast block placement.\nThis is mainly for other mods that may quickly use items when\nholding down use, such as Litematica's Easy Place mode.",
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@

"depends": {
"minecraft": ">=1.21 <=1.21.1",
"malilib": ">=0.21.1"
"malilib": ">=0.21.2-sakura.1"
}
}

0 comments on commit 35acfd1

Please sign in to comment.