From 661f8544db5d7c9de7585d8e04ee77f2e52f712a Mon Sep 17 00:00:00 2001 From: Jack Urbanek Date: Fri, 23 Apr 2021 11:35:59 -0400 Subject: [PATCH] Missing one event_id pass --- light/world/souls/player_soul.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/light/world/souls/player_soul.py b/light/world/souls/player_soul.py index fd0f30150..4e5738b4e 100644 --- a/light/world/souls/player_soul.py +++ b/light/world/souls/player_soul.py @@ -75,7 +75,7 @@ def handle_act(self, act_text, event_id: Optional[str] = None): """ actor = self.target_node actor._last_action_time = time.time() - self.world.parse_exec(self.target_node, act_text) + self.world.parse_exec(self.target_node, act_text, event_id=event_id) def new_quest(self): if random.random() > 0.01: