From feeb861b66abde7dda59ee75568830fe544fba73 Mon Sep 17 00:00:00 2001 From: Julian Marcos Date: Sun, 24 Oct 2021 06:44:35 +0000 Subject: [PATCH] &water: It was appearing as if pinhook visited the user --- plugins/watered.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/watered.py b/plugins/watered.py index 126dbbe..b8ceef7 100644 --- a/plugins/watered.py +++ b/plugins/watered.py @@ -115,7 +115,7 @@ def water(msg): filename = '/home/{}/.botany/visitors.json'.format(nick) with open(filename) as v: visitors = json.load(v) - visitors.append({'timestamp': int(time.time()), 'user': 'pinhook'}) + visitors.append({'timestamp': int(time.time()), 'user': 'ju'}) with open(filename, 'w') as v: json.dump(visitors, v, indent=2) with open('/home/{}/.botany/{}_plant_data.json'.format(nick, nick)) as plant_json: