You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds a tweak allowing players to convert dirt blocks to grass paths using shovels. This tweak also allows sneak interacting with grass paths to convert them back into dirt blocks, which previously required breaking and replacing the block.
ReadMe File Updated
We have introduced some additional information regarding a recently introduced feature known as "Dirt To Path". This feature lets you transform dirt blocks into grass paths using a shovel, and you can also reverse this process.
UniversalTweaks.java Modified
We've made some alterations to facilitate the 'Dirt To Path' feature. If the user switches on the associated configuration toggle (utDirtToPath), we make sure to register the new class UTDirtToPath with Minecraft Forge event bus.
Configuration Alteration in UTConfigTweaks.java
We have integrated a fresh setting option named "Dirt to Path". It is important to note that the application of this setting necessitates a restart of Minecraft. This option allows users to turn on or off the newly introduced feature.
Introduction of New Class UTDirtToPath.java
A new class named UTDirtToPath.java has been created. This particular class is responsible for managing interaction events - specifically when users wish to convert dirt blocks to grass paths, or vice versa, by using a shovel on the blocks.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a tweak allowing players to convert dirt blocks to grass paths using shovels. This tweak also allows sneak interacting with grass paths to convert them back into dirt blocks, which previously required breaking and replacing the block.
This tweak deprecates Dirt2Path [FORGE].