From 305f1cd61639ac6e216ee273f5d2f169ce29f36c Mon Sep 17 00:00:00 2001 From: Julian Marcos Date: Sat, 7 Oct 2023 09:08:27 +0000 Subject: [PATCH] <a should tell the user for which the answer was It did something flaky if you were op and did <a somenick, returing the response for that nick but pinging you and saying that was your last answer. --- plugins/lasttilde.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/lasttilde.py b/plugins/lasttilde.py index 8bbe9a4..872f64c 100644 --- a/plugins/lasttilde.py +++ b/plugins/lasttilde.py @@ -26,5 +26,5 @@ def last_tilde(msg): else: data = datax if answer is None: data = str(data) - answer = f"{pnick}'s last tilde's answer was supposed to be `{data}`." + answer = f"{nick}'s last tilde's answer was supposed to be `{data}`." return pinhook.plugin.message(answer)