aboutsummaryrefslogtreecommitdiff
path: root/internal/game/cmd_consume.go
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-29 01:00:17 -0400
committerhistoria <[not public]>2026-06-29 01:00:17 -0400
commite9d87838590a02c7ca028fad8cd16e42a582dd32 (patch)
tree0d9770d8fc728946c5452e732efbad393a745a23 /internal/game/cmd_consume.go
parentfffc132263ab7d3c402992bffbaae4790161f7a7 (diff)
downloadthehouseoficarus-e9d87838590a02c7ca028fad8cd16e42a582dd32.tar.gz
feat: self-signed certificates
Diffstat (limited to 'internal/game/cmd_consume.go')
-rw-r--r--internal/game/cmd_consume.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/game/cmd_consume.go b/internal/game/cmd_consume.go
index 423cddb..aec33c5 100644
--- a/internal/game/cmd_consume.go
+++ b/internal/game/cmd_consume.go
@@ -71,7 +71,7 @@ func (g *Game) doEat(sess *net.Session, input string) {
Timestamp: time.Now(),
})
- if !p.OptionBool("queue_silently") {
+ if p.OptionBool("show_queued_cmds") {
sess.WriteLine(fmt.Sprintf("You prepare to eat %s.", g.itemColorize(sess, def, def.Name)))
}
}
@@ -206,7 +206,7 @@ func (g *Game) doDrink(sess *net.Session, args []string) {
Timestamp: time.Now(),
})
- if !p.OptionBool("queue_silently") {
+ if p.OptionBool("show_queued_cmds") {
sess.WriteLine(fmt.Sprintf("You prepare to drink the %s.", g.itemColorize(sess, def, def.Name)))
}
}