From b6fdde0aa6fcefd735e7c550aaa7fca879023f1c Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Mon, 15 Jun 2026 00:03:55 -0400 Subject: feat: unicode option, fixed up options and tables --- internal/game/tick.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/game/tick.go') diff --git a/internal/game/tick.go b/internal/game/tick.go index 4d037ec..767109e 100644 --- a/internal/game/tick.go +++ b/internal/game/tick.go @@ -126,14 +126,14 @@ func (g *Game) WanderTick() { if !ok { continue } - if p.RoomID == m.fromRoom && p.OptionBool("mobleave") { + if p.RoomID == m.fromRoom && p.OptionBool("mob_leave") { if m.level > 0 { sess.WriteLine(fmt.Sprintf("\n%s (level %d) leaves.", m.name, m.level)) } else { sess.WriteLine(fmt.Sprintf("\n%s moves away.", m.name)) } } - if p.RoomID == m.toRoom && p.OptionBool("mobenter") { + if p.RoomID == m.toRoom && p.OptionBool("mob_enter") { if m.level > 0 { sess.WriteLine(fmt.Sprintf("\n%s (level %d) enters.", m.name, m.level)) } else { -- cgit v1.2.3