aboutsummaryrefslogtreecommitdiff
path: root/internal/game/cmd_skills.go
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-29 01:41:49 -0400
committerhistoria <[not public]>2026-06-29 01:41:49 -0400
commit12ed73f9ff9de1a145683de8a73c170613371979 (patch)
tree8b35d3dfda8231edcbc33e2fc2eb68000128e48c /internal/game/cmd_skills.go
parente9d87838590a02c7ca028fad8cd16e42a582dd32 (diff)
downloadthehouseoficarus-12ed73f9ff9de1a145683de8a73c170613371979.tar.gz
wrap_width and table improvements, targeting 80 character default width
Diffstat (limited to 'internal/game/cmd_skills.go')
-rw-r--r--internal/game/cmd_skills.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/game/cmd_skills.go b/internal/game/cmd_skills.go
index 9321b96..4aacd31 100644
--- a/internal/game/cmd_skills.go
+++ b/internal/game/cmd_skills.go
@@ -35,7 +35,7 @@ func (g *Game) doSkills(sess *net.Session) {
color.Render(mode, color.Parse("B3"), strconv.Itoa(next)),
})
}
- for _, line := range t.Render(p.OptionBool("unicode")) {
+ for _, line := range t.Render(p.OptionBool("unicode"), p.OptionInt("wrap_width")) {
sess.WriteLine(line)
}
}