We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6970c87 commit f9ca0c5Copy full SHA for f9ca0c5
1 file changed
static/big_game_script.js
@@ -292,6 +292,10 @@ window.ccPorted = window.ccPorted || {};
292
function log(...args) {
293
console.log(`[${gameID}]: `, ...args);
294
}
295
+ function treat(text) {
296
+ if (!text) return null;
297
+ return text.split(".").join("-");
298
+ }
299
function shortcut(keys, cb) {
300
log(`Creating shortcut for keys ${keys}, calling ${cb.name}`);
301
var keyMap = {};
0 commit comments