From 42d51f494cc196aaa98b3d5744f8b0d66d2c5007 Mon Sep 17 00:00:00 2001 From: TheKrol Date: Wed, 13 Nov 2024 03:50:51 -0500 Subject: [PATCH 1/2] Update hug.py Added more hug selections --- techsupport_bot/commands/hug.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/techsupport_bot/commands/hug.py b/techsupport_bot/commands/hug.py index 29b157cb..697e201e 100644 --- a/techsupport_bot/commands/hug.py +++ b/techsupport_bot/commands/hug.py @@ -44,6 +44,14 @@ class Hugger(cogs.BaseCog): "{user_giving_hug} hugs {user_to_hug} into a coma", "{user_giving_hug} smothers {user_to_hug} with a loving hug", "{user_giving_hug} squeezes {user_to_hug} to death", + "{user_giving_hug} swaddles {user_to_hug} like a baby", + "{user_giving_hug} tackles {user_to_hug} to the ground with a giant glomp", + "{user_giving_hug} hugs {user_to_hug} and gives them Eskimo kisses", + "{user_giving_hug} grabs {user_to_hug} ,pulls them close, giving them three hearty raps on the back", + "{user_giving_hug} hugs {user_to_hug} and rubs their back slowly", + "{user_giving_hug} pulls {user_to_hug} into a tight hug and tries to squeeze the sadness out", + "{user_giving_hug} hugs {user_to_hug} too tightly until they pass out", + "{user_giving_hug} went to hug {user_to_hug} but missed and ran into the wall instead", ] ICON_URL: str = ( "https://cdn.icon-icons.com/icons2/1648/PNG/512/10022huggingface_110042.png" From 3fa4799de44ade7f472ed97a5f37025333117ad4 Mon Sep 17 00:00:00 2001 From: TheKrol Date: Wed, 13 Nov 2024 03:53:29 -0500 Subject: [PATCH 2/2] Update hug.py Lint update --- techsupport_bot/commands/hug.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/techsupport_bot/commands/hug.py b/techsupport_bot/commands/hug.py index 697e201e..eb7542c7 100644 --- a/techsupport_bot/commands/hug.py +++ b/techsupport_bot/commands/hug.py @@ -47,9 +47,12 @@ class Hugger(cogs.BaseCog): "{user_giving_hug} swaddles {user_to_hug} like a baby", "{user_giving_hug} tackles {user_to_hug} to the ground with a giant glomp", "{user_giving_hug} hugs {user_to_hug} and gives them Eskimo kisses", - "{user_giving_hug} grabs {user_to_hug} ,pulls them close, giving them three hearty raps on the back", + ( + "{user_giving_hug} grabs {user_to_hug} ,pulls them close," + " giving them three hearty raps on the back" + ), "{user_giving_hug} hugs {user_to_hug} and rubs their back slowly", - "{user_giving_hug} pulls {user_to_hug} into a tight hug and tries to squeeze the sadness out", + "{user_giving_hug} pulls {user_to_hug} into a tight hug and squeezes the sadness out", "{user_giving_hug} hugs {user_to_hug} too tightly until they pass out", "{user_giving_hug} went to hug {user_to_hug} but missed and ran into the wall instead", ]