From 43c8999f35700c2e0069be87a2d5f5ca884e6cb4 Mon Sep 17 00:00:00 2001 From: sose Date: Mon, 3 May 2021 22:30:50 +0000 Subject: [PATCH] fixed more stuff --- bad_words | 2 ++ food_item_offset | 2 +- good_words | 2 -- mcsb.py | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bad_words b/bad_words index ec68a37..3176819 100644 --- a/bad_words +++ b/bad_words @@ -38,3 +38,5 @@ furore roughhouse wayfaring ErbB-2 +string +yerba buena diff --git a/food_item_offset b/food_item_offset index ca7bf83..da2d398 100644 --- a/food_item_offset +++ b/food_item_offset @@ -1 +1 @@ -13 \ No newline at end of file +14 \ No newline at end of file diff --git a/good_words b/good_words index 70dc367..3d41611 100644 --- a/good_words +++ b/good_words @@ -111,7 +111,6 @@ translation radar existence air -string change hara-kiri aa @@ -360,7 +359,6 @@ metadata pollen collation spalt -yerba buena seventh heaven ahinsa tick-tack-toe diff --git a/mcsb.py b/mcsb.py index 7f89540..2343432 100755 --- a/mcsb.py +++ b/mcsb.py @@ -263,7 +263,7 @@ def get_a_noun(): while True: print("forming another toot...") - random_number: int = random.randint(0, 2) + random_number: int = random.randint(0, 1) action: Optional[str] if random_number == 0: action = get_an_action() @@ -273,7 +273,7 @@ while True: noun1 = get_a_noun() noun2 = get_a_noun() mastodon.toot(meme.format(action, noun1, noun2)) - print("tooted " + meme.format(action, noun1, noun2).lower()) + print("tooted " + meme.format(action, noun1, noun2)) elif random_number == 1: action = get_a_food_action() if action is None: @@ -282,6 +282,6 @@ while True: noun1 = get_a_noun() noun2 = get_a_noun() mastodon.toot(meme.format(action, noun1, noun2).lower()) - print("tooted " + meme.format(action, noun1, noun2)) + print("tooted " + meme.format(action, noun1, noun2).lower()) sleep(43200) # toot twice a day