Added ping and duck, showing category in trivia.

This commit is contained in:
2021-11-12 16:43:20 +01:00
parent 39341178ff
commit 6ac189235c
5 changed files with 133 additions and 21 deletions

10
src/games/ping.js Normal file
View File

@@ -0,0 +1,10 @@
'use strict';
function onCommand(args, context) {
context.sendMessage(`Pong, @${context.user.username}!`, context.room.id);
}
module.exports = {
name: 'Ping',
onCommand,
};