diff options
| author | 8cy <[email protected]> | 2020-07-07 17:08:13 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-07-07 17:08:13 -0700 |
| commit | 4e114ff0797cb9566066afb6cda229b3ce3f055a (patch) | |
| tree | ed99bdc39f43e2411bd2e2fdde03b68af9624ac1 /src/commands | |
| parent | add owner cmd (diff) | |
| download | dep-core-4e114ff0797cb9566066afb6cda229b3ce3f055a.tar.xz dep-core-4e114ff0797cb9566066afb6cda229b3ce3f055a.zip | |
fix roleplay thing
Diffstat (limited to 'src/commands')
| -rw-r--r-- | src/commands/roleplay/blush.ts | 2 | ||||
| -rw-r--r-- | src/commands/roleplay/celebrate.ts | 2 | ||||
| -rw-r--r-- | src/commands/roleplay/eat.ts | 2 | ||||
| -rw-r--r-- | src/commands/roleplay/fistbump.ts | 2 | ||||
| -rw-r--r-- | src/commands/roleplay/highfive.ts | 2 | ||||
| -rw-r--r-- | src/commands/roleplay/holdhands.ts | 2 | ||||
| -rw-r--r-- | src/commands/roleplay/hug.ts | 2 | ||||
| -rw-r--r-- | src/commands/roleplay/inhale.ts | 2 | ||||
| -rw-r--r-- | src/commands/roleplay/kill.ts | 2 | ||||
| -rw-r--r-- | src/commands/roleplay/kiss.ts | 2 | ||||
| -rw-r--r-- | src/commands/roleplay/pat.ts | 2 | ||||
| -rw-r--r-- | src/commands/roleplay/poke.ts | 2 | ||||
| -rw-r--r-- | src/commands/roleplay/punch.ts | 2 | ||||
| -rw-r--r-- | src/commands/roleplay/slap.ts | 2 | ||||
| -rw-r--r-- | src/commands/roleplay/sleep.ts | 2 | ||||
| -rw-r--r-- | src/commands/roleplay/wakeup.ts | 2 | ||||
| -rw-r--r-- | src/commands/roleplay/wave.ts | 2 | ||||
| -rw-r--r-- | src/commands/roleplay/wink.ts | 2 |
18 files changed, 18 insertions, 18 deletions
diff --git a/src/commands/roleplay/blush.ts b/src/commands/roleplay/blush.ts index 9a1ab5c..650fe29 100644 --- a/src/commands/roleplay/blush.ts +++ b/src/commands/roleplay/blush.ts @@ -26,6 +26,6 @@ module.exports = class BlushRoleplay extends Command { }); } run(msg: CommandoMessage, { uUser }: any) { - return msg.say(`___**${msg.author.username}** blushes at **${uUser.username}**.___` + ' ' + emoji.random()) + return msg.say(`***${msg.author.username}** blushes at **${uUser.username}**.*` + ' ' + emoji.random()) } };
\ No newline at end of file diff --git a/src/commands/roleplay/celebrate.ts b/src/commands/roleplay/celebrate.ts index 1f49cd9..ba8b830 100644 --- a/src/commands/roleplay/celebrate.ts +++ b/src/commands/roleplay/celebrate.ts @@ -19,6 +19,6 @@ module.exports = class CelebrateRoleplay extends Command { }); } run(msg: CommandoMessage) { - return msg.say(`___**${msg.author.username}** celebrates.___` + ' ' + emoji.random()) + return msg.say(`***${msg.author.username}** celebrates.*` + ' ' + emoji.random()) } };
\ No newline at end of file diff --git a/src/commands/roleplay/eat.ts b/src/commands/roleplay/eat.ts index 925a75c..60acc80 100644 --- a/src/commands/roleplay/eat.ts +++ b/src/commands/roleplay/eat.ts @@ -19,6 +19,6 @@ module.exports = class EatRoleplay extends Command { }); } run(msg: CommandoMessage) { - return msg.say(`___**${msg.author.username}** eats.___` + ' ' + emoji.random()) + return msg.say(`***${msg.author.username}** eats.*` + ' ' + emoji.random()) } };
\ No newline at end of file diff --git a/src/commands/roleplay/fistbump.ts b/src/commands/roleplay/fistbump.ts index 3bc991a..c15d646 100644 --- a/src/commands/roleplay/fistbump.ts +++ b/src/commands/roleplay/fistbump.ts @@ -27,6 +27,6 @@ module.exports = class FistBumpRoleplay extends Command { }); } run(msg: CommandoMessage, { uUser }: any) { - return msg.say(`___**${msg.author.username}** fist-bumps **${uUser.username}**.___` + ' ' + emoji.random()) + return msg.say(`***${msg.author.username}** fist-bumps **${uUser.username}**.*` + ' ' + emoji.random()) } };
\ No newline at end of file diff --git a/src/commands/roleplay/highfive.ts b/src/commands/roleplay/highfive.ts index 5449c50..56e9379 100644 --- a/src/commands/roleplay/highfive.ts +++ b/src/commands/roleplay/highfive.ts @@ -27,6 +27,6 @@ module.exports = class HighFiveRoleplay extends Command { }); } run(msg: CommandoMessage, { uUser }: any) { - return msg.say(`___**${msg.author.username}** high-fives **${uUser.username}**.___` + ' ' + emoji.random()) + return msg.say(`***${msg.author.username}** high-fives **${uUser.username}**.*` + ' ' + emoji.random()) } };
\ No newline at end of file diff --git a/src/commands/roleplay/holdhands.ts b/src/commands/roleplay/holdhands.ts index ec63061..61c3469 100644 --- a/src/commands/roleplay/holdhands.ts +++ b/src/commands/roleplay/holdhands.ts @@ -27,6 +27,6 @@ module.exports = class HoldHandsRoleplay extends Command { }); } run(msg: CommandoMessage, { uUser }: any) { - return msg.say(`___**${msg.author.username}** holds **${uUser.username}** hand.___` + ' ' + emoji.random()) + return msg.say(`***${msg.author.username}** holds **${uUser.username}** hand.*` + ' ' + emoji.random()) } };
\ No newline at end of file diff --git a/src/commands/roleplay/hug.ts b/src/commands/roleplay/hug.ts index d5a6f09..49e1da0 100644 --- a/src/commands/roleplay/hug.ts +++ b/src/commands/roleplay/hug.ts @@ -26,6 +26,6 @@ module.exports = class HugRoleplay extends Command { }); } run(msg: CommandoMessage, { uUser }: any) { - return msg.say(`___**${msg.author.username}** hugs **${uUser.username}**.___` + ' ' + emoji.random()) + return msg.say(`***${msg.author.username}** hugs **${uUser.username}**.*` + ' ' + emoji.random()) } };
\ No newline at end of file diff --git a/src/commands/roleplay/inhale.ts b/src/commands/roleplay/inhale.ts index 3f94701..0dbafe6 100644 --- a/src/commands/roleplay/inhale.ts +++ b/src/commands/roleplay/inhale.ts @@ -26,6 +26,6 @@ module.exports = class InhaleRoleplay extends Command { }); } run(msg: CommandoMessage, { uUser }: any) { - return msg.say(`___**${msg.author.username}** inhales **${uUser.username}** but gained no abilities.___` + ' ' + emoji.random()) + return msg.say(`***${msg.author.username}** inhales **${uUser.username}** but gained no abilities.*` + ' ' + emoji.random()) } };
\ No newline at end of file diff --git a/src/commands/roleplay/kill.ts b/src/commands/roleplay/kill.ts index 8f1bebf..ce46aef 100644 --- a/src/commands/roleplay/kill.ts +++ b/src/commands/roleplay/kill.ts @@ -26,6 +26,6 @@ module.exports = class KillRoleplay extends Command { }); } run(msg: CommandoMessage, { uUser }: any) { - return msg.say(`___**${msg.author.username}** kills **${uUser.username}**.___` + ' ' + emoji.random()) + return msg.say(`***${msg.author.username}** kills **${uUser.username}**.*` + ' ' + emoji.random()) } };
\ No newline at end of file diff --git a/src/commands/roleplay/kiss.ts b/src/commands/roleplay/kiss.ts index d94d439..bc34f87 100644 --- a/src/commands/roleplay/kiss.ts +++ b/src/commands/roleplay/kiss.ts @@ -26,6 +26,6 @@ module.exports = class KissRoleplay extends Command { }); } run(msg: CommandoMessage, { uUser }: any) { - return msg.say(`___**${msg.author.username}** kisses **${uUser.username}**.___` + ' ' + emoji.random()) + return msg.say(`***${msg.author.username}** kisses **${uUser.username}**.*` + ' ' + emoji.random()) } };
\ No newline at end of file diff --git a/src/commands/roleplay/pat.ts b/src/commands/roleplay/pat.ts index 8b2d632..1578f02 100644 --- a/src/commands/roleplay/pat.ts +++ b/src/commands/roleplay/pat.ts @@ -26,6 +26,6 @@ module.exports = class PatRoleplay extends Command { }); } run(msg: CommandoMessage, { uUser }: any) { - return msg.say(`___**${msg.author.username}** pats **${uUser.username}**.___` + ' ' + emoji.random()) + return msg.say(`***${msg.author.username}** pats **${uUser.username}**.*` + ' ' + emoji.random()) } };
\ No newline at end of file diff --git a/src/commands/roleplay/poke.ts b/src/commands/roleplay/poke.ts index d16818b..3b7d4f6 100644 --- a/src/commands/roleplay/poke.ts +++ b/src/commands/roleplay/poke.ts @@ -26,6 +26,6 @@ module.exports = class PokeRoleplay extends Command { }); } run(msg: CommandoMessage, { uUser }: any) { - return msg.say(`___**${msg.author.username}** pokes **${uUser.username}**.___` + ' ' + emoji.random()) + return msg.say(`***${msg.author.username}** pokes **${uUser.username}**.*` + ' ' + emoji.random()) } };
\ No newline at end of file diff --git a/src/commands/roleplay/punch.ts b/src/commands/roleplay/punch.ts index 2b911c6..ce4f2e5 100644 --- a/src/commands/roleplay/punch.ts +++ b/src/commands/roleplay/punch.ts @@ -26,6 +26,6 @@ module.exports = class PunchRoleplay extends Command { }); } run(msg: CommandoMessage, { uUser }: any) { - return msg.say(`___**${msg.author.username}** punches **${uUser.username}**.___` + ' ' + emoji.random()) + return msg.say(`***${msg.author.username}** punches **${uUser.username}**.*` + ' ' + emoji.random()) } };
\ No newline at end of file diff --git a/src/commands/roleplay/slap.ts b/src/commands/roleplay/slap.ts index 254981b..850594c 100644 --- a/src/commands/roleplay/slap.ts +++ b/src/commands/roleplay/slap.ts @@ -26,6 +26,6 @@ module.exports = class SlapRoleplay extends Command { }); } run(msg: CommandoMessage, { uUser }: any) { - return msg.say(`___**${msg.author.username}** slaps **${uUser.username}**.___` + ' ' + emoji.random()) + return msg.say(`***${msg.author.username}** slaps **${uUser.username}**.*` + ' ' + emoji.random()) } };
\ No newline at end of file diff --git a/src/commands/roleplay/sleep.ts b/src/commands/roleplay/sleep.ts index bd5c399..cb2a7d4 100644 --- a/src/commands/roleplay/sleep.ts +++ b/src/commands/roleplay/sleep.ts @@ -19,6 +19,6 @@ module.exports = class SleepRoleplay extends Command { }); } run(msg: CommandoMessage) { - return msg.say(`___**${msg.author.username}** falls asleep.___` + ' ' + emoji.random()) + return msg.say(`***${msg.author.username}** falls asleep.*` + ' ' + emoji.random()) } };
\ No newline at end of file diff --git a/src/commands/roleplay/wakeup.ts b/src/commands/roleplay/wakeup.ts index 485a64d..a7eb017 100644 --- a/src/commands/roleplay/wakeup.ts +++ b/src/commands/roleplay/wakeup.ts @@ -20,6 +20,6 @@ module.exports = class WakeUpRoleplay extends Command { }); } run(msg: CommandoMessage) { - return msg.say(`___**${msg.author.username}** wakes up.___` + ' ' + emoji.random()) + return msg.say(`***${msg.author.username}** wakes up.*` + ' ' + emoji.random()) } };
\ No newline at end of file diff --git a/src/commands/roleplay/wave.ts b/src/commands/roleplay/wave.ts index effc6e3..3d6c6b9 100644 --- a/src/commands/roleplay/wave.ts +++ b/src/commands/roleplay/wave.ts @@ -26,6 +26,6 @@ module.exports = class WaveRoleplay extends Command { }); } run(msg: CommandoMessage, { uUser }: any) { - return msg.say(`___**${msg.author.username}** waves at **${uUser.username}**.___` + ' ' + emoji.random()) + return msg.say(`***${msg.author.username}** waves at **${uUser.username}**.*` + ' ' + emoji.random()) } };
\ No newline at end of file diff --git a/src/commands/roleplay/wink.ts b/src/commands/roleplay/wink.ts index 30935c1..723988f 100644 --- a/src/commands/roleplay/wink.ts +++ b/src/commands/roleplay/wink.ts @@ -26,6 +26,6 @@ module.exports = class WinkRoleplay extends Command { }); } run(msg: CommandoMessage, { uUser }: any) { - return msg.say(`___**${msg.author.username}** winks at **${uUser.username}**.___` + ' ' + emoji.random()) + return msg.say(`***${msg.author.username}** winks at **${uUser.username}**.*` + ' ' + emoji.random()) } };
\ No newline at end of file |