Skip to content

Commit

Permalink
feat: TODO: Add Keep Command History feature
Browse files Browse the repository at this point in the history
  • Loading branch information
Cierra-Runis committed Dec 31, 2024
1 parent 7bcb179 commit 987ea7a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@
[Figma](https://www.figma.com/design/B4xgnDzzLQ11tZtaSKujFo/SurviRed?m=auto&t=UQ0XIsjsgI5N8PWV-1)

[Villager Pickup](https://github.com/Living-Lemming/Villager-Pickup-Mod)

[Keep Command History](https://github.com/ryanbester/keepcommandhistory)
2 changes: 2 additions & 0 deletions src/main/kotlin/pers/cierra_runis/survired/SurviRed.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package pers.cierra_runis.survired

import net.fabricmc.api.ModInitializer
import org.slf4j.LoggerFactory
import pers.cierra_runis.survired.features.history.SurviRedHistory
import pers.cierra_runis.survired.features.pickup.SurviRedPickup
import pers.cierra_runis.survired.features.rename.SurviRedRename

Expand All @@ -10,5 +11,6 @@ object SurviRed : ModInitializer {
override fun onInitialize() {
SurviRedPickup.surviRedRegister()
SurviRedRename.surviRedRegister()
SurviRedHistory.surviRedRegister()
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package pers.cierra_runis.survired.features.history

import pers.cierra_runis.survired.common.SurviRedRegister

object SurviRedHistory : SurviRedRegister {
override fun surviRedRegister() {
}
}

0 comments on commit 987ea7a

Please sign in to comment.