From 630a24db7ccec719e0376c4d35edf7a501ee8962 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Tue, 6 Jul 2021 19:20:07 -0700 Subject: [PATCH] Plugins/Wolfram: add nick to all output --- Plugins/Wolfram.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Plugins/Wolfram.pm b/Plugins/Wolfram.pm index e9b1c97a..1f3bd372 100644 --- a/Plugins/Wolfram.pm +++ b/Plugins/Wolfram.pm @@ -53,10 +53,10 @@ sub cmd_wolfram { return "$context->{nick}: " . $response->decoded_content; } elsif ($response->code eq 501) { - return "I don't know what that means."; + return "$context->{nick}: I don't know what that means."; } else { - return "Failed to query Wolfram|Alpha: " . $response->status_line; + return "$context->{nick}: Failed to query Wolfram|Alpha: " . $response->status_line; } }