diff --git a/plugins/watered.py b/plugins/watered.py index a3cf13e..be365d2 100644 --- a/plugins/watered.py +++ b/plugins/watered.py @@ -15,12 +15,12 @@ verbs = [ class IgnoredUsers: def __init__(self): - if 'date/nowater.txt' not in listdir(): - open('date/nowater.txt', 'w').close() + if 'data/nowater.txt' not in listdir(): + open('data/nowater.txt', 'w').close() @property def users(self): - with open('date/nowater.txt', 'r') as w: + with open('data/nowater.txt', 'r') as w: u = [i.strip() for i in w.readlines() if i.strip()] return u