From 992e5560072824c4675b2632ea491be1c3f0ad30 Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Thu, 18 Jul 2024 12:45:15 -0400 Subject: [PATCH] Fixed a typo in a documentation string. --- simalq/tile/monster.hy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simalq/tile/monster.hy b/simalq/tile/monster.hy index 067c540..ab0f67d 100644 --- a/simalq/tile/monster.hy +++ b/simalq/tile/monster.hy @@ -529,7 +529,7 @@ :!shot-frequency (f/ 4 5) :act (meth [] - (doc f"Coward — If the monster is within {@flee-range} squares of you, it flees (per `Approach` in reverse). Otherwise, if it has line of sight to you (ignoring all obstacles) it adds {@shot-frequency} to its shot power. If this is ≥1, it subtracts 1 to shoot you. Otherwise, it wanders (per `Wander`).") + (doc f"Coward — If the monster is within {@flee-range} squares of you, it flees (per `Approach` in reverse). Otherwise, if it has line of sight to you (ignoring all obstacles), it adds {@shot-frequency} to its shot power. If this is ≥1, it subtracts 1 to shoot you. Otherwise, it wanders (per `Wander`).") (when (and (<= (dist G.player.pos @pos) @flee-range)