diff --git a/plugins/admincmd.sma b/plugins/admincmd.sma index 94118129..bb56c730 100755 --- a/plugins/admincmd.sma +++ b/plugins/admincmd.sma @@ -464,6 +464,10 @@ public cmdBan(id, level, cid) { formatex(msg[len], charsmax(msg) - len, "%L", i, "PERM"); } + if (strlen(reason) > 0) + { + formatex(msg[len], charsmax(msg) - len, " (%L: %s)", i, "REASON", reason); + } show_activity_id(i, id, name, msg); } } @@ -537,6 +541,10 @@ public cmdBanIP(id, level, cid) { formatex(msg[len], charsmax(msg) - len, "%L", i, "PERM"); } + if (strlen(reason) > 0) + { + formatex(msg[len], charsmax(msg) - len, " (%L: %s)", i, "REASON", reason); + } show_activity_id(i, id, name, msg); } }