summaryrefslogtreecommitdiff
path: root/check.py
AgeCommit message (Collapse)Author
2016-06-12made /check display email not confirmed warningDico200
2015-09-13Fixed syntax errorPanFritz
2015-09-11Acctualy, its simpler to just do it all in a thread.PanFritz
2015-09-11Converted to use async_queryPanFritz
2015-05-05Revert "show network AS in /check"Dico200
This reverts commit 181c6ccfeb04f5030f0230dce93b8a76c43ecc56.
2015-05-05Revert "use https for ipinfo.io"Dico200
This reverts commit 62569c736148aae34c9bafbfceb1033b88871daf.
2015-04-20use https for ipinfo.iojomo
2015-04-20show network AS in /checkjomo
2015-03-19Changed all CommandExecutor argumentsDico200
Added arguments command and label to all command executor functions, hopefully for massive performance increase. This is due to the following mess in PythonLoader: ``` Java @Override public boolean onCommand(CommandSender sender, Command command, String label, String[] args) { boolean result; if (argcount == -1) { try { result = call(4, sender, command, label, args); argcount = 4; } catch (PyException e) { //this could goof up someone ... they'll probably yell at us and eventually read this code ... fuck them if (e.type == Py.TypeError && (e.value.toString().endsWith("takes exactly 3 arguments (4 given)") || e.value.toString().endsWith("takes exactly 4 arguments (5 given)"))) { result = call(3, sender, command, label, args); argcount = 3; } else if (e.type == Py.TypeError && (e.value.toString().endsWith("takes exactly 2 arguments (4 given)") || e.value.toString().endsWith("takes exactly 3 arguments (5 given)"))) { result = call(2, sender, command, label, args); argcount = 2; } else { throw e; } } } else { result = call(argcount, sender, command, label, args); } return result; } ``` Note: Still WIP on reports - I'm working on making it keep solved reports to fix issue 10
2015-01-10clean up check.pyjomo
2015-01-10remove tabjomo
2015-01-09Changed index of results[] to fit array of tuplesPanFritz
2015-01-09Changed index of results[] to fit array of tuplesPanFritz
2015-01-09Debug log resultsPanFritz
2015-01-09ProgressPanFritz
2015-01-09Testing converting results to stringPanFritz
2015-01-09More try/exceptPanFritz
2015-01-09Added try except to str converionPanFritz
2015-01-09Added try exceptPanFritz
2015-01-09possible fixPanFritz
2015-01-08don't need quotesjomo
2015-01-08nope #8jomo
2015-01-08possible fix for #8jomo
2015-01-07fix error on offline playersjomo
2015-01-07fix offline playersjomo
2015-01-07oopsjomo
2015-01-07fix typojomo
2015-01-07show traceback on errorjomo
2015-01-07improve check.pyjomo
2015-01-07fix /check old usernamesjomo
2015-01-06change indentation from 2 spaces to 4, fix #5jomo
2014-12-26fix /check outputjomo
2014-08-10small cleanupjomo
2014-08-09New check module (shows some statistics)Louis Vogt