diff --git a/public/include/admin_checks.php b/public/include/admin_checks.php
index 2c2d220a..5f72041a 100644
--- a/public/include/admin_checks.php
+++ b/public/include/admin_checks.php
@@ -85,7 +85,7 @@ if (@$_SESSION['USERDATA']['is_admin'] && $user->isAdmin(@$_SESSION['USERDATA'][
foreach ($accounts as $account => $balance) {
if ($account == "") { $account = "Default"; }
if ($balance <= 0) {
- $error[] = "Account: " . $account . " has no liquid funds to pay your miners!";
+ $error[] = "Account: " . $account . " has liquid funds to pay your miners but it will not be used!";
} else {
$enotice[] = "Account: " . $account . " has liquid funds to pay your miners! - " . $balance . " " . $config['currency'];
}