From 03b6a9383a1c03e6c2958f954810069dae1dc2b8 Mon Sep 17 00:00:00 2001 From: Oier Bravo Urtasun Date: Sat, 13 Sep 2025 00:48:38 +0200 Subject: [PATCH] Anti Dota/LOL --- .../esc/esc_action_manager_monkey.gd | 3 +++ 1 file changed, 3 insertions(+) diff --git a/addons/escoria-ui-return-monkey-island/esc/esc_action_manager_monkey.gd b/addons/escoria-ui-return-monkey-island/esc/esc_action_manager_monkey.gd index 8a9d5da2..e25f5f11 100644 --- a/addons/escoria-ui-return-monkey-island/esc/esc_action_manager_monkey.gd +++ b/addons/escoria-ui-return-monkey-island/esc/esc_action_manager_monkey.gd @@ -384,3 +384,6 @@ func get_tooltip_from_current_target(verb,current_target_object): func get_action_target_text(action_target_texts: Dictionary): var action_target_text = action_target_texts.get(escoria.action_manager.current_tool.global_id) return action_target_text if action_target_text else "" + +func _telekinetic_applies_to(event: ESCGrammarStmts.Event) -> bool: + return super(event) if event != null else false