We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2aa839 commit c8fcad3Copy full SHA for c8fcad3
serverWarn.php
@@ -3,7 +3,7 @@
3
require 'core.php';
4
5
$hourLeft = 24;
6
-$mbLeft = 1000;
+$mbLeft = 1024;
7
8
if(file_exists("info.json")){
9
$info = json_decode(file_get_contents("info.json"),true);
@@ -118,7 +118,7 @@
118
$expiryTime = substr($list[$keys]['expiryTime'],0,-3);
119
}
120
121
- if($total - $totalUsed < - ($mbLeft * 1024 * 1024) && $total != 0){
+ if($total - $totalUsed <= ($mbLeft * 1024 * 1024) && $total != 0){
122
if(!isset($usersInfo[$uuid])){
123
$info['usersInfo'][$uuid] = "";
124
sendMessage($Config['report_channel'], "
0 commit comments