mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-10 18:44:05 +09:00
more renaming things
Former-commit-id: 80e29fc17e431e350d8d4860273ec42bc4ad67df Former-commit-id: d70546a097d66ade94de93b4be157b7c9637e98f
This commit is contained in:
@@ -18,7 +18,7 @@ object AVTracker : ConsoleCommand {
|
||||
try {
|
||||
val actorID = args[1].toInt()
|
||||
|
||||
if (Terrarum.ingame.hasActor(actorID)) {
|
||||
if (Terrarum.ingame.theGameHasActor(actorID)) {
|
||||
jPanelInstances.add(ActorValueTracker(Terrarum.ingame.getActorByID(actorID)))
|
||||
}
|
||||
else {
|
||||
|
||||
@@ -5,6 +5,23 @@ import net.torvald.terrarum.ui.ConsoleWindow
|
||||
import org.apache.commons.codec.digest.DigestUtils
|
||||
|
||||
/**
|
||||
*
|
||||
* Password setting rules:
|
||||
*
|
||||
* For each releases new password should be set. The new password must:
|
||||
* - start with next alphabet of previous password
|
||||
* if previous password started with Z, the new password must start with A
|
||||
* - be a name appear in the Legend of Zelda series which officially released by Nintendo
|
||||
* - be lowercase
|
||||
* - BE CRACKABLE (crackstation.net)
|
||||
*
|
||||
* Example passwords would be:
|
||||
* aryll -> biggoron -> ciela -> ... -> linebeck -> midna -> navi -> ...
|
||||
*
|
||||
* Notes:
|
||||
* do NOT put plaintext anywhere in the code (except for comments maybe)
|
||||
* must use SHA-256
|
||||
*
|
||||
* Created by minjaesong on 16-02-19.
|
||||
*/
|
||||
internal object Authenticator : ConsoleCommand {
|
||||
|
||||
Reference in New Issue
Block a user