File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -32,12 +32,12 @@ mod_name=InteractiveBlockPrompt
3232# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
3333mod_license =MIT
3434# The mod version. See https://semver.org/
35- mod_version =1.0 .0
35+ mod_version =1.1 .0
3636# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
3737# This should match the base package used for the mod sources.
3838# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
3939mod_group_id =ink.myumoon.ibp
4040# The authors of the mod. This is a simple text string that is used for display purposes in the mod list.
41- mod_authors =HaooooZhang
41+ mod_authors =HaooooZhang, TimyaSifer
4242# The description of the mod. This is a simple multiline text string that is used for display purposes in the mod list.
4343mod_description =A simple QoL mod which will display an interactive indicator on the screen when aiming at a selected block, and it is customizable.
Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ public class RenderEvent {
2828 private static final int ICON_SIZE = 12 ;
2929 private static final int ICON_OFFSET = 8 ;
3030
31- // Tag keys for different block types
3231 private static final TagKey <Block > BOOK_TAG = create ("book" );
3332 private static final TagKey <Block > BUTTON_TAG = create ("button" );
3433 private static final TagKey <Block > CLICK_TAG = create ("click" );
@@ -38,7 +37,6 @@ public class RenderEvent {
3837 private static final TagKey <Block > TOGGLE_TAG = create ("toggle" );
3938 private static final TagKey <Block > WRENCH_TAG = create ("wrench" );
4039
41- // Icon resource locations
4240 private static final ResourceLocation BOOK_ICON = ResourceLocation .fromNamespaceAndPath ("ibp" ,"textures/gui/book.png" );
4341 private static final ResourceLocation BUTTON_ICON = ResourceLocation .fromNamespaceAndPath ("ibp" ,"textures/gui/button.png" );
4442 private static final ResourceLocation CLICK_ICON = ResourceLocation .fromNamespaceAndPath ("ibp" ,"textures/gui/click.png" );
You can’t perform that action at this time.
0 commit comments