aboutsummaryrefslogtreecommitdiff
path: root/internal/game/action_clean.go
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-20 03:20:01 -0400
committerhistoria <[not public]>2026-06-20 03:20:01 -0400
commite4400c5f1e84c18d2126f2cb502ae10685977cbb (patch)
tree0523e9d68f1cfdc6f81b862e3068fe12c1a85054 /internal/game/action_clean.go
parent5ea082ab4e82409aebc889b496f43e52b003d4f7 (diff)
downloadthehouseoficarus-e4400c5f1e84c18d2126f2cb502ae10685977cbb.tar.gz
refactor: combined all station crafting
Diffstat (limited to 'internal/game/action_clean.go')
-rw-r--r--internal/game/action_clean.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/game/action_clean.go b/internal/game/action_clean.go
index 104dcb0..7330883 100644
--- a/internal/game/action_clean.go
+++ b/internal/game/action_clean.go
@@ -21,7 +21,7 @@ func (g *Game) advanceClean(sess *net.Session, p *player.Player) {
allRecipes, err := g.RecipeStore.LoadAll()
if err != nil {
- g.cancelBackgroundAction(p)
+ g.cancelBgAction(p)
return
}
@@ -51,7 +51,7 @@ func (g *Game) advanceClean(sess *net.Session, p *player.Player) {
if recipe == nil {
sess.WriteLine("\nYou've finished cleaning herbs.")
- g.cancelBackgroundAction(p)
+ g.cancelBgAction(p)
return
}
@@ -105,7 +105,7 @@ func (g *Game) advanceClean(sess *net.Session, p *player.Player) {
if !hasMore {
sess.WriteLine("\nYou've finished cleaning herbs.")
- g.cancelBackgroundAction(p)
+ g.cancelBgAction(p)
return
}