gems item sprite change

This commit is contained in:
minjaesong
2024-02-19 03:16:16 +09:00
parent 165a9b4e88
commit b9e7a4ba84
5 changed files with 9 additions and 9 deletions

Binary file not shown.

View File

@@ -66,16 +66,16 @@ basegame
* e.g. 0x02010034 will be translated as 2.1.52 * e.g. 0x02010034 will be translated as 2.1.52
* *
*/ */
const val VERSION_RAW: Long = 0x0000_000004_000000 const val VERSION_RAW: Long = 0x0000_000004_000001
// Commit counts up to the Release 0.3.0: 2259 // Commit counts up to the Release 0.3.0: 2259
// Commit counts up to the Release 0.3.1: 2278 // Commit counts up to the Release 0.3.1: 2278
// Commit counts up to the Release 0.3.2: 2732 // Commit counts up to the Release 0.3.2: 2732
// Commit counts up to the Release 0.3.3: 3020 // Commit counts up to the Release 0.3.3: 3020
// Commit counts up to the Release 0.4.0: 3631 // Commit counts up to the Release 0.4.0: 3631
// val VERSION_SNAPSHOT = Snapshot(0) // for normal dev val VERSION_SNAPSHOT = Snapshot(0) // for normal dev
// val VERSION_SNAPSHOT = ForcedSnapshot("24w07d") // for snapshot release // val VERSION_SNAPSHOT = ForcedSnapshot("24w07d") // for snapshot release
val VERSION_SNAPSHOT = null // for the release // val VERSION_SNAPSHOT = null // for the release
const val VERSION_TAG: String = "" const val VERSION_TAG: String = ""

View File

@@ -15,7 +15,7 @@ import org.apache.commons.codec.digest.DigestUtils
* - BE CRACKABLE (crackstation.net) * - BE CRACKABLE (crackstation.net)
* *
* Example passwords would be: * Example passwords would be:
* aryll -> beedle -> ciela -> daruk -> ... -> linebeck -> mido -> navi -> ... * aryll -> beedle -> ciela -> daruk -> epona -> ... -> linebeck -> mido -> navi -> ...
* *
* Notes: * Notes:
* do NOT put plaintext anywhere in the code (except for comments maybe) * do NOT put plaintext anywhere in the code (except for comments maybe)
@@ -36,7 +36,7 @@ internal object Authenticator : ConsoleCommand {
// println("auth passwd: '$pwd'") // println("auth passwd: '$pwd'")
// println("hash: $hashedPwd") // println("hash: $hashedPwd")
if ("c40232ae7b8020da3ab1449a015e7cc23f249a790856b63b1b69c6a5de019fed".equals(hashedPwd, ignoreCase = true)) { if ("4a26c5cd64195c4a52d2e3770e56c1d0c65861d2a03b47f8ba5d25ca033b9c42".equals(hashedPwd, ignoreCase = true)) {
// beedle // beedle
val msg = if (a) "Locked" else "Authenticated" val msg = if (a) "Locked" else "Authenticated"
Echo(msg) Echo(msg)

View File

@@ -344,7 +344,7 @@ class UICrafting(val full: UIInventoryFull?) : UICanvas(
addUIitem(spinnerCraftCount) addUIitem(spinnerCraftCount)
addUIitem(buttonCraft) addUIitem(buttonCraft)
// temporarily disabled for 0.4 release // temporarily disabled for 0.4 release
if (TerrarumAppConfiguration.VERSION_RAW >= 0x0000_000005_000000) { if (TerrarumAppConfiguration.VERSION_RAW >= 0x0000_000004_000001) {
addUIitem(menuButtonCraft) addUIitem(menuButtonCraft)
addUIitem(menuButtonTechView) addUIitem(menuButtonTechView)
} }