aboutsummaryrefslogtreecommitdiff
path: root/internal/behavior
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-30 19:27:37 -0400
committerhistoria <[not public]>2026-06-30 19:27:37 -0400
commitfee376102192dc6f24297a7b11324636ace3a07d (patch)
tree6c777cc71208b429eebdbdc5864b353d4af34a09 /internal/behavior
parent98bdef072c843fdd8ccdf85a9b54ab9d32d34187 (diff)
downloadthehouseoficarus-fee376102192dc6f24297a7b11324636ace3a07d.tar.gz
feat: admin gui object CRUD is much nicer
Diffstat (limited to 'internal/behavior')
-rw-r--r--internal/behavior/behavior.go3
-rw-r--r--internal/behavior/types.go2
2 files changed, 1 insertions, 4 deletions
diff --git a/internal/behavior/behavior.go b/internal/behavior/behavior.go
index e01d8a7..f64b4b2 100644
--- a/internal/behavior/behavior.go
+++ b/internal/behavior/behavior.go
@@ -2,9 +2,6 @@ package behavior
type GatherConfig struct {
Skill string `yaml:"skill"`
- Level int `yaml:"level"`
- XP int `yaml:"xp"`
- BaseWait float64 `yaml:"base_wait"`
Tools []string `yaml:"tools"`
Bait string `yaml:"bait"`
Success SuccessFormula `yaml:"success"`
diff --git a/internal/behavior/types.go b/internal/behavior/types.go
index 1b7ac1a..c061742 100644
--- a/internal/behavior/types.go
+++ b/internal/behavior/types.go
@@ -77,7 +77,7 @@ type GatherData struct {
ObjDefID string
InstanceKey string
InstanceIdx int
- EffectiveWait float64
+ Wait float64
DepleteTimer bool
Step int
Verb string