From b122cae3fabd1f9418bcfea177901f11360a85e5 Mon Sep 17 00:00:00 2001 From: Jyu Viole Grace <24418520+thisisjvgrace@users.noreply.github.com> Date: Sun, 14 Oct 2018 13:39:18 +0530 Subject: [PATCH] fix 2 typos --- planttycoon/planttycoon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/planttycoon/planttycoon.py b/planttycoon/planttycoon.py index 46f8785..dc2bbda 100644 --- a/planttycoon/planttycoon.py +++ b/planttycoon/planttycoon.py @@ -971,7 +971,7 @@ class PlantTycoon(Cog): message = "You have no {}. Go buy some!".format(product) else: if product_category == "tool": - message = "You have don't have a {}. Go buy one!".format(product) + message = "You don't have a {}. Go buy one!".format(product) else: message = "You have no {}. Go buy some!".format(product) else: @@ -1307,7 +1307,7 @@ class PlantTycoon(Cog): message = "You're currently not growing a plant." else: gardener.current = {} - message = "You sucessfuly shovelled your plant out." + message = "You successfully shovelled your plant out." if gardener.points < 0: gardener.points = 0 await gardener.save_gardener()