From 70b686b3a266e55649c8925721a7e38709f52942 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Tue, 23 Jun 2020 22:53:47 +0100 Subject: [PATCH] Deleted redundant code that was not needed anymore --- cogs/OwOText.py | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/cogs/OwOText.py b/cogs/OwOText.py index 7a9754a2..467409b8 100644 --- a/cogs/OwOText.py +++ b/cogs/OwOText.py @@ -1,41 +1,8 @@ -import random - from discord.ext import commands # OwO Impowt da wibwawy ÙωÙ from discord.ext.commands import BucketType, cooldown from owotext import OwO -# Defining an array of all the vowels in lowercase and uppercase -vowels = ['a', 'e', 'i', 'o', 'u', 'A', 'E', 'I', 'O', 'U'] - - -# -----------------------------------------Code Found Online------------------------------------------------------------ -def last_replace(s, old, new): - li = s.rsplit(old, 1) - return new.join(li) - - -def text_to_owo(text): - """ Converts your text to OwO """ - smileys = [';;w;;', '^w^', '>w<', 'UwU', '(・`ω\´・)', '(´・ω・\`)'] - - text = text.replace('L', 'W').replace('l', 'w') - text = text.replace('R', 'W').replace('r', 'w') - - text = last_replace(text, '!', '! {}'.format(random.choice(smileys))) - text = last_replace(text, '?', '? owo') - text = last_replace(text, '.', '. {}'.format(random.choice(smileys))) - - for v in vowels: - if 'n{}'.format(v) in text: - text = text.replace('n{}'.format(v), 'ny{}'.format(v)) - if 'N{}'.format(v) in text: - text = text.replace('N{}'.format(v), 'N{}{}'.format('Y' if v.isupper() else 'y', v)) - - return text - - -# -----------------------------------------Code Found Online------------------------------------------------------------ # Initiate the cog class OwOText(commands.Cog):