This repository has been archived by the owner on Dec 28, 2024. It is now read-only.
generated from ItsEmpa/SkyHanniDependantModTemplate
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bit of cleanup in pearl refill and refillables
- Loading branch information
Showing
3 changed files
with
22 additions
and
16 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
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,11 +1,16 @@ | ||
package com.ratons.features.instances | ||
|
||
import at.hannibal2.skyhanni.utils.NEUInternalName.Companion.asInternalName | ||
|
||
enum class Refillables( | ||
val internalName: String, | ||
internalName: String, | ||
val displayName: String, | ||
val stackSize: Int, | ||
) { | ||
ENDER_PEARL("ENDER_PEARL", "§fEnder Pearl", 16), | ||
DECOY("DUNGEON_DECOY", "§aDecoy", 64), | ||
INFLATABLE_JERRY("INFLATABLE_JERRY", "§fInflatable Jerry", 64), | ||
; | ||
|
||
val internalName = internalName.asInternalName() | ||
} |