diff options
| author | historia <[not public]> | 2026-06-29 01:00:17 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-06-29 01:00:17 -0400 |
| commit | e9d87838590a02c7ca028fad8cd16e42a582dd32 (patch) | |
| tree | 0d9770d8fc728946c5452e732efbad393a745a23 /internal/game/cmd_consume.go | |
| parent | fffc132263ab7d3c402992bffbaae4790161f7a7 (diff) | |
| download | thehouseoficarus-e9d87838590a02c7ca028fad8cd16e42a582dd32.tar.gz | |
feat: self-signed certificates
Diffstat (limited to 'internal/game/cmd_consume.go')
| -rw-r--r-- | internal/game/cmd_consume.go | 4 |
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))) } } |
