bump version

This commit is contained in:
Flummi 2016-11-25 10:39:22 +01:00
parent c34324822a
commit 764c19955d
3 changed files with 5 additions and 4 deletions

View File

@ -22,6 +22,7 @@ INSERT INTO `cfg` (`class`, `key`, `value`, `type`) VALUES
('main', 'level', '{\r\n \"~\": 80,\r\n \"&\": 70,\r\n \"@\": 60,\r\n \"%\": 50,\r\n \"+\": 10,\r\n \"\": 0\r\n}', 'json'), ('main', 'level', '{\r\n \"~\": 80,\r\n \"&\": 70,\r\n \"@\": 60,\r\n \"%\": 50,\r\n \"+\": 10,\r\n \"\": 0\r\n}', 'json'),
('main', 'debug', 'false', 'bool'), ('main', 'debug', 'false', 'bool'),
('main', 'debugchannel', '#f0ck', 'string'), ('main', 'debugchannel', '#f0ck', 'string'),
('main', 'debugnetwork', 'n0xy', 'string'),
('main', 'scclientid', '', 'string'), ('main', 'scclientid', '', 'string'),
('main', 'url', 'http://', 'string'), ('main', 'url', 'http://', 'string'),
('websrv', 'port', '', 'int'), ('websrv', 'port', '', 'int'),

View File

@ -1,6 +1,6 @@
{ {
"name": "keinBotv2", "name": "f0ck",
"version": "0.2.0", "version": "0.3.0_f0ck",
"main": "src/main.js", "main": "src/main.js",
"scripts": { "scripts": {
"start": "node ./bot.js" "start": "node ./bot.js"
@ -22,7 +22,7 @@
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://gitfap.de/keinBot/keinBotv2.git" "url": "git+https://gitfap.de/keinBot/f0ck.git"
}, },
"author": "Flummi & jkhsjdhjs", "author": "Flummi & jkhsjdhjs",
"license": "WTFPL" "license": "WTFPL"

View File

@ -138,7 +138,7 @@ self.generateThumbs = () => {
}; };
self.log = (msg) => { self.log = (msg) => {
if(self.debug) if(self.debug)
self.bot.send(self.cfg.main.debugchannel, msg, 'n0xy'); self.bot.send(self.cfg.main.debugchannel, msg, self.cfg.main.debugnetwork);
}; };
self.loadTrigger = () => { self.loadTrigger = () => {
var files = fs.readdirSync(__dirname+'/trigger/'); var files = fs.readdirSync(__dirname+'/trigger/');