aboutsummaryrefslogtreecommitdiff
path: root/internal/behavior/types.go
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-07-01 04:53:56 -0400
committerhistoria <[not public]>2026-07-01 04:53:56 -0400
commitbf7c27c2cbf3eb56a0a4c5141e39b152c51614b5 (patch)
tree5383c325fafeb34c01ea737a7070402f040fc5af /internal/behavior/types.go
parentfbe5090ac3325ff8ea6989cdf4515c7f077c975b (diff)
downloadthehouseoficarus-bf7c27c2cbf3eb56a0a4c5141e39b152c51614b5.tar.gz
feat: admin gui map, item, and objects mostly complete
Diffstat (limited to 'internal/behavior/types.go')
-rw-r--r--internal/behavior/types.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/internal/behavior/types.go b/internal/behavior/types.go
index 571f2c4..c59a95e 100644
--- a/internal/behavior/types.go
+++ b/internal/behavior/types.go
@@ -46,9 +46,9 @@ const (
TypeCure ActionType = "cure"
TypeObstacle ActionType = "obstacle"
TypeFletch ActionType = "fletch"
- TypeClean ActionType = "clean"
+ TypeClean ActionType = "cleaning"
TypeCook ActionType = "cook"
- TypeSmelt ActionType = "smelt"
+ TypeSmelt ActionType = "smelting"
TypeSmith ActionType = "smith"
TypeCraft ActionType = "craft"
TypeCombine ActionType = "combine"
@@ -88,7 +88,7 @@ type GatherData struct {
type ProductionData struct {
ItemID string
Phase int
- Wait float64
+ TicksPerCycle float64
StartMessage string
EndMessage string
Remaining int
@@ -184,13 +184,13 @@ type CombineData struct {
Remaining int
StartMessage string
EndMessage string
- Wait float64
+ TicksPerCycle float64
}
type FletchData struct {
ItemID string
Phase int
- Wait float64
+ TicksPerCycle float64
Remaining int
}