Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/runConfigurations/Minecraft_Server.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

124 changes: 124 additions & 0 deletions .idea/uiDesigner.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 11 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ base {
}

repositories {
maven { url = "https://maven.terraformersmc.com/" }
maven { url "https://maven.shedaniel.me/" }
// Add repositories to retrieve artifacts from in here.
// You should only use this when depending on other mods because
// Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
Expand All @@ -26,6 +28,14 @@ dependencies {

// Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"

// Mod Menu API
modImplementation("com.terraformersmc:modmenu:${project.modmenu_version}")

//Cloth Config
modApi("me.shedaniel.cloth:cloth-config-fabric:${project.cloth_config_version}") {
exclude(group: "net.fabricmc.fabric-api")
}
}

processResources {
Expand All @@ -41,7 +51,7 @@ processResources {
}
}

def targetJavaVersion = 17
def targetJavaVersion = 21
tasks.withType(JavaCompile).configureEach {
// ensure that the encoding is set to UTF-8, no matter what the system default is
// this fixes some edge cases with special characters not displaying correctly
Expand Down
12 changes: 7 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,17 @@ org.gradle.jvmargs=-Xmx1G

# Fabric Properties
# check these on https://modmuss50.me/fabric.html
minecraft_version=1.20.4
yarn_mappings=1.20.4+build.3
loader_version=0.15.11
minecraft_version=1.21.1
yarn_mappings=1.21.1+build.3
loader_version=0.16.0

# Mod Properties
mod_version = 1.20.4-0.0.1
mod_version = 1.21.1-0.0.4
maven_group = me.ceziy.extrahud
archives_base_name = ExtraHUD

# Dependencies
# check this on https://modmuss50.me/fabric.html
fabric_version=0.97.1+1.20.4
fabric_version=0.102.1+1.21.1
modmenu_version=11.0.1
cloth_config_version=15.0.127
Binary file not shown.
Binary file not shown.
50 changes: 50 additions & 0 deletions run/command_history.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
/time set midnight
/time set day
/time set midnight
/execute in minecraft:the_nether run tp ~ ~ ~
/execute in minecraft:overworld run tp ~ ~ ~
/execute in minecraft:the_nether run tp ~ ~ ~
/execute in minecraft:overworld run tp ~ ~ ~
/tp 0 90 0
/setblock ~ ~ ~ minecraft:stone
/execute in minecraft:the_nether run tp ~ ~ ~
/execute in minecraft:overworld run tp ~ ~ ~
/time set midnight
/time set day
/time set midnight
/time set day
/time set midnight
/time set night
/time set noon
/time set 10
/time set 100
/time set 1000
/time set 100t
/time set 1000t
/time set 1000s
/time set 1s
/time set 0s
/time set 1000s
/time set 900s
/time set 959s
/time set 950s
/time set 940s
/time set midnight
/time set day
/time set night
/time set noon
/time set night
/time set midnight
/time set noon
/time set 5990t
/time set 5980t
/time set 5910t
/time set noon
/time set midnight
/time set noon
/time set 6200t
/time set 6400t
/time set 6900t
/time set 7000t
/time set midnight
/time set day
7 changes: 7 additions & 0 deletions run/config/extrahud.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"showhud": true,
"shownethercoords": false,
"coordinatestype": "Dimentional",
"lighttype": "Off",
"timetype": "Off"
}
Empty file.
Loading