diff options
| author | historia <[not public]> | 2026-06-27 02:29:55 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-06-27 02:29:55 -0400 |
| commit | 6f3d21d6e7f01155ce0c461857a053b43d329392 (patch) | |
| tree | 51e96b62deb5f99a3d70c3a15ab94c520a1ee8e8 /internal/player | |
| parent | 3102525d97aa6f1ad152c74b2ccfbd4b3a9b83f5 (diff) | |
| download | thehouseoficarus-6f3d21d6e7f01155ce0c461857a053b43d329392.tar.gz | |
feat: recall/home cmd, line break option
Diffstat (limited to 'internal/player')
| -rw-r--r-- | internal/player/player.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/player/player.go b/internal/player/player.go index 14ed06e..1b59ab1 100644 --- a/internal/player/player.go +++ b/internal/player/player.go @@ -141,6 +141,7 @@ var OptionDefs = []OptionDef{ {"craft_all", OptBool, false, nil, "Auto-start crafting when only one product is possible"}, {"safespot_alert", OptString, "{196 bold}** Your safespot has been compromised! **{/}", nil, "Message shown when forced out of a safespot"}, {"danger_warning", OptBool, true, nil, "Confirm before entering a dangerous (hazardous) area"}, + {"prompt_break", OptString, "on", []string{"on", "off"}, "Line break after prompt before output"}, } var optionByName map[string]*OptionDef @@ -178,6 +179,7 @@ type Player struct { BackgroundAction *behavior.Action `yaml:"-"` WalkSequence []string `yaml:"-"` ConsumeCooldown int `yaml:"-"` + HomeTransportCooldown int `yaml:"-"` MoveTicks int `yaml:"-"` MoveDirection string `yaml:"-"` MoveTarget int `yaml:"-"` |
