diff --git a/packages/web/src/LiveFirstPerson.svelte b/packages/web/src/LiveFirstPerson.svelte
index b877357..434fd64 100644
--- a/packages/web/src/LiveFirstPerson.svelte
+++ b/packages/web/src/LiveFirstPerson.svelte
@@ -419,28 +419,36 @@
- {#if possessed}
-
riding the {possessed.kind.replace(/-/g, " ")}
-
{Math.max(0, possessed.movesPerTurn - possessed.movementUsed)} moves{possessed.attackUsed ? "" : " · claws ready"}
-
- {:else if rideable.length > 0 && (onCreatureMove || onCreatureAttack)}
- {#each rideable as c (c.id)}
-
- {/each}
- {/if}
-
- {#if withYou.length > 0}
-
sharing your square
- {#each withYou as body (body.id)}
-
- {/each}
- {/if}
-
+
+ {#if possessed}
+ riding the {possessed.kind.replace(/-/g, " ")}
+ {Math.max(0, possessed.movesPerTurn - possessed.movementUsed)} moves{possessed.attackUsed ? "" : " · claws ready"}
+
+ {:else if rideable.length > 0 && (onCreatureMove || onCreatureAttack)}
+ {#each rideable as c (c.id)}
+
+ {/each}
+ {/if}
+
+
+ {#if canStride}
+
+ {/if}
+
+
+ {#if withYou.length > 0}
+ sharing your square
+ {#each withYou as body (body.id)}
+
+ {/each}
+ {/if}
+
+
@@ -476,7 +484,6 @@
{#if canStride}
-
{/if}