generated from BocchiKessokuTeam/ForgeTemplateMod-ArchLoom
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sync with
sakura-ryoko/itemscroller
1.21-0.24.51
- Loading branch information
Showing
20 changed files
with
874 additions
and
62 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
## Change | ||
- sync with `sakura-ryoko/itemscroller` 1.21-sakura.8 | ||
- sync with `sakura-ryoko/itemscroller` 1.21-0.24.51 |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
package fi.dy.masa.itemscroller; | ||
|
||
import net.minecraft.MinecraftVersion; | ||
|
||
import fi.dy.masa.malilib.util.StringUtils; | ||
|
||
public class Reference | ||
{ | ||
public static final String ID = "itemscroller"; | ||
public static final String MOD_ID = "rocknroller"; | ||
public static final String MOD_NAME = "Rock'n Roller"; | ||
public static final String MOD_VERSION = StringUtils.getModVersionString(MOD_ID); | ||
public static final String MC_VERSION = MinecraftVersion.CURRENT.getName(); | ||
public static final String MOD_TYPE = "neoforge"; | ||
public static final String MOD_STRING = MOD_ID + "-" + MOD_TYPE + "-" + MC_VERSION + "-" + MOD_VERSION; | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/java/fi/dy/masa/itemscroller/compat/modmenu/ModMenuImpl.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package fi.dy.masa.itemscroller.compat.modmenu; | ||
|
||
import fi.dy.masa.itemscroller.gui.GuiConfigs; | ||
import org.thinkingstudio.mafglib.loader.gui.ModConfigScreenFactory; | ||
import org.thinkingstudio.mafglib.loader.gui.ModConfigScreenInitializer; | ||
|
||
public class ModMenuImpl implements ModConfigScreenInitializer | ||
{ | ||
@Override | ||
public ModConfigScreenFactory getModConfigScreenFactory() | ||
{ | ||
return (modContainer, screen) -> { | ||
GuiConfigs gui = new GuiConfigs(); | ||
gui.setParent(screen); | ||
return gui; | ||
}; | ||
} | ||
} |
This file contains 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
This file contains 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
This file contains 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
3 changes: 0 additions & 3 deletions
3
src/main/java/fi/dy/masa/itemscroller/mixin/MixinClientPlayerInteractionManager.java
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.