Skip to content

Commit 5bec0f7

Browse files
committed
Added README.md and added /skyfall command to open config.
1 parent 77a190c commit 5bec0f7

File tree

3 files changed

+24
-4
lines changed

3 files changed

+24
-4
lines changed

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# SkyFall Mod
2+
3+
SkyFall is a hypixel skyblock QoL mod made for newest versions of Minecraft in Fabric. Currently, very much a wip so many features soon to come.
4+
5+
## Features
6+
- Garden Features
7+
- Inventory highlight options
8+
- And more!
9+
10+
# Guide
11+
- Requires [Fabric Kotlin Language](https://modrinth.com/mod/fabric-language-kotlin) to be installed.
12+
- Type `/sf` or `/skyfall` to open the config menu.
13+
14+
15+
## Discord and Support
16+
[Discord Server](https://discord.gg/qZ885qTvkx)
17+
18+
- Feature Suggestions: If you have any ideas of features or improvements feel free to suggest them in the `#suggestions` channel. (Don't suggest features that break Hypixel rules)
19+
- Bug Reports: Use the `#bug-reports` channel to report any bugs you find with the features.
20+
- Quick Help: If you have questions ask in the `#support` channel.

src/main/kotlin/io/github/frostzie/skyfall/SkyFall.kt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,10 @@ import io.github.frostzie.skyfall.utils.IslandManager
99
import net.fabricmc.api.ModInitializer
1010
import net.fabricmc.fabric.api.client.event.lifecycle.v1.ClientTickEvents
1111
import net.minecraft.client.gui.screen.Screen
12-
import org.slf4j.LoggerFactory
1312

1413
class SkyFall : ModInitializer {
1514

16-
private val logger = LoggerFactory.getLogger("skyfall")
17-
1815
override fun onInitialize() {
19-
logger.info("Hello Fabric world!")
2016
registerTickEvent()
2117
configManager = ConfigManager
2218
configManager.firstLoad()

src/main/kotlin/io/github/frostzie/skyfall/commands/AlwaysOnCommands.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ object AlwaysOnCommands {
1515
ConfigGuiManager.openConfigGui()
1616
1
1717
})
18+
a.register(literal("skyfall").executes {
19+
ConfigGuiManager.openConfigGui()
20+
1
21+
})
1822
}
1923
}
2024

0 commit comments

Comments
 (0)