summaryrefslogtreecommitdiff
path: root/src/commands
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands')
-rw-r--r--src/commands/roleplay/blush.ts1
-rw-r--r--src/commands/roleplay/celebrate.ts1
-rw-r--r--src/commands/roleplay/eat.ts1
-rw-r--r--src/commands/roleplay/fistbump.ts1
-rw-r--r--src/commands/roleplay/highfive.ts1
-rw-r--r--src/commands/roleplay/holdhands.ts1
-rw-r--r--src/commands/roleplay/hug.ts1
-rw-r--r--src/commands/roleplay/inhale.ts1
-rw-r--r--src/commands/roleplay/kill.ts1
-rw-r--r--src/commands/roleplay/kiss.ts1
-rw-r--r--src/commands/roleplay/pat.ts1
-rw-r--r--src/commands/roleplay/poke.ts1
-rw-r--r--src/commands/roleplay/punch.ts1
-rw-r--r--src/commands/roleplay/slap.ts1
-rw-r--r--src/commands/roleplay/sleep.ts1
-rw-r--r--src/commands/roleplay/wakeup.ts1
-rw-r--r--src/commands/roleplay/wave.ts1
-rw-r--r--src/commands/roleplay/wink.ts1
18 files changed, 18 insertions, 0 deletions
diff --git a/src/commands/roleplay/blush.ts b/src/commands/roleplay/blush.ts
index 650fe29..5abdb26 100644
--- a/src/commands/roleplay/blush.ts
+++ b/src/commands/roleplay/blush.ts
@@ -26,6 +26,7 @@ module.exports = class BlushRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
+ msg.delete();
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 ba8b830..d5b012c 100644
--- a/src/commands/roleplay/celebrate.ts
+++ b/src/commands/roleplay/celebrate.ts
@@ -19,6 +19,7 @@ module.exports = class CelebrateRoleplay extends Command {
});
}
run(msg: CommandoMessage) {
+ msg.delete();
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 60acc80..8af76d5 100644
--- a/src/commands/roleplay/eat.ts
+++ b/src/commands/roleplay/eat.ts
@@ -19,6 +19,7 @@ module.exports = class EatRoleplay extends Command {
});
}
run(msg: CommandoMessage) {
+ msg.delete();
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 c15d646..129c89f 100644
--- a/src/commands/roleplay/fistbump.ts
+++ b/src/commands/roleplay/fistbump.ts
@@ -27,6 +27,7 @@ module.exports = class FistBumpRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
+ msg.delete();
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 56e9379..28187ef 100644
--- a/src/commands/roleplay/highfive.ts
+++ b/src/commands/roleplay/highfive.ts
@@ -27,6 +27,7 @@ module.exports = class HighFiveRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
+ msg.delete();
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 61c3469..88babdd 100644
--- a/src/commands/roleplay/holdhands.ts
+++ b/src/commands/roleplay/holdhands.ts
@@ -27,6 +27,7 @@ module.exports = class HoldHandsRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
+ msg.delete();
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 49e1da0..f64d6d5 100644
--- a/src/commands/roleplay/hug.ts
+++ b/src/commands/roleplay/hug.ts
@@ -26,6 +26,7 @@ module.exports = class HugRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
+ msg.delete();
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 0dbafe6..e302e2e 100644
--- a/src/commands/roleplay/inhale.ts
+++ b/src/commands/roleplay/inhale.ts
@@ -26,6 +26,7 @@ module.exports = class InhaleRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
+ msg.delete();
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 ce46aef..809db32 100644
--- a/src/commands/roleplay/kill.ts
+++ b/src/commands/roleplay/kill.ts
@@ -26,6 +26,7 @@ module.exports = class KillRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
+ msg.delete();
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 bc34f87..ab37cb5 100644
--- a/src/commands/roleplay/kiss.ts
+++ b/src/commands/roleplay/kiss.ts
@@ -26,6 +26,7 @@ module.exports = class KissRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
+ msg.delete();
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 1578f02..923c670 100644
--- a/src/commands/roleplay/pat.ts
+++ b/src/commands/roleplay/pat.ts
@@ -26,6 +26,7 @@ module.exports = class PatRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
+ msg.delete();
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 3b7d4f6..227e2b6 100644
--- a/src/commands/roleplay/poke.ts
+++ b/src/commands/roleplay/poke.ts
@@ -26,6 +26,7 @@ module.exports = class PokeRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
+ msg.delete();
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 ce4f2e5..e8a59a6 100644
--- a/src/commands/roleplay/punch.ts
+++ b/src/commands/roleplay/punch.ts
@@ -26,6 +26,7 @@ module.exports = class PunchRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
+ msg.delete();
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 850594c..16a52b2 100644
--- a/src/commands/roleplay/slap.ts
+++ b/src/commands/roleplay/slap.ts
@@ -26,6 +26,7 @@ module.exports = class SlapRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
+ msg.delete();
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 cb2a7d4..3b5c5da 100644
--- a/src/commands/roleplay/sleep.ts
+++ b/src/commands/roleplay/sleep.ts
@@ -19,6 +19,7 @@ module.exports = class SleepRoleplay extends Command {
});
}
run(msg: CommandoMessage) {
+ msg.delete();
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 a7eb017..37667a6 100644
--- a/src/commands/roleplay/wakeup.ts
+++ b/src/commands/roleplay/wakeup.ts
@@ -20,6 +20,7 @@ module.exports = class WakeUpRoleplay extends Command {
});
}
run(msg: CommandoMessage) {
+ msg.delete();
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 3d6c6b9..779e56e 100644
--- a/src/commands/roleplay/wave.ts
+++ b/src/commands/roleplay/wave.ts
@@ -26,6 +26,7 @@ module.exports = class WaveRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
+ msg.delete();
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 723988f..480b9ab 100644
--- a/src/commands/roleplay/wink.ts
+++ b/src/commands/roleplay/wink.ts
@@ -26,6 +26,7 @@ module.exports = class WinkRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
+ msg.delete();
return msg.say(`***${msg.author.username}** winks at **${uUser.username}**.*` + ' ' + emoji.random())
}
}; \ No newline at end of file