Fixed a flying bug

This commit is contained in:
Howard Abrams 2025-07-02 22:27:52 -07:00
parent 39deff444e
commit f02e16e1ba

View file

@ -380,7 +380,7 @@ class Character(Object, GenderCharacter, ContribRPCharacter):
If the 'location' is None, then send it to the room the
character is in.
"""
for idx, msg in enumerate(messages[1:]):
for idx, msg in enumerate(messages):
if location:
delay(time_delay * idx, location.msg_contents, "\n" + routput(msg))
else: