1
1
mirror of https://gitlab.com/ceda_ei/Quadnite-Bot synced 2025-04-03 19:36:51 +02:00

Change JSON to pretty JSON.

This commit is contained in:
Ceda EI 2018-05-27 16:20:09 +05:30
parent dc38a233ef
commit 2f5b707205

View File

@ -234,7 +234,8 @@ function kys() {
// Sends back JSON
function json() {
global $var;
send_text($var);
$pretty_json = json_encode(json_decode($var), JSON_PRETTY_PRINT);
send_text($pretty_json);
}
// Start Message
function start() {