Skip to content
This repository was archived by the owner on Jul 17, 2020. It is now read-only.

Commit 2167e07

Browse files
committed
no more silly killy
1 parent 8b35ae4 commit 2167e07

File tree

4 files changed

+11
-15
lines changed

4 files changed

+11
-15
lines changed

master.js

+3-5
Original file line numberDiff line numberDiff line change
@@ -5152,7 +5152,7 @@ module.exports = function (bot) {
51525152
description: 'Resurrects me (:D) if I\'m down (D:)'
51535153
});
51545154

5155-
bot.addCommand(bot.CommunityCommand({
5155+
bot.addCommand({
51565156
name: 'die',
51575157
fun: function () {
51585158
if (bot.stopped) {
@@ -5164,10 +5164,8 @@ module.exports = function (bot) {
51645164
return 'You killed me!';
51655165
},
51665166
permissions: { del: 'NONE', use: 'OWNER' },
5167-
description: 'Kills me :(',
5168-
pendingMessage: 'I will shut up after {0} more invocations.'
5169-
}));
5170-
5167+
description: 'Kills me :('
5168+
});
51715169
};
51725170

51735171
},{}],31:[function(require,module,exports){

master.min.js

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

publi.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ then
2828
fi
2929
fi
3030

31-
npm lint
31+
npm run-script lint
3232
if [ $? -ne 0 ]
3333
then
3434
exit $?

source/plugins/life.js

+3-5
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ module.exports = function (bot) {
1212
description: 'Resurrects me (:D) if I\'m down (D:)'
1313
});
1414

15-
bot.addCommand(bot.CommunityCommand({
15+
bot.addCommand({
1616
name: 'die',
1717
fun: function () {
1818
if (bot.stopped) {
@@ -24,8 +24,6 @@ module.exports = function (bot) {
2424
return 'You killed me!';
2525
},
2626
permissions: { del: 'NONE', use: 'OWNER' },
27-
description: 'Kills me :(',
28-
pendingMessage: 'I will shut up after {0} more invocations.'
29-
}));
30-
27+
description: 'Kills me :('
28+
});
3129
};

0 commit comments

Comments
 (0)