From f289799c57a63a0bcdc5ce3a8c6eda29c931f16b Mon Sep 17 00:00:00 2001 From: Andrew Date: Tue, 26 Sep 2017 20:22:30 -0400 Subject: [PATCH] Making gravity's LogAction message consistent... (#695) with the other plugin's messages. --- plugins/funcommands/gravity.sp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/funcommands/gravity.sp b/plugins/funcommands/gravity.sp index 1b964bd4..4f2cc833 100644 --- a/plugins/funcommands/gravity.sp +++ b/plugins/funcommands/gravity.sp @@ -36,7 +36,7 @@ int g_GravityTarget[MAXPLAYERS+1]; void PerformGravity(int client, int target, float amount) { SetEntityGravity(target, amount); - LogAction(client, target, "\"%L\" set gravity on \"%L\" to %f.", client, target, amount); + LogAction(client, target, "\"%L\" set gravity on \"%L\" (amount \"%f\")", client, target, amount); } public void AdminMenu_Gravity(TopMenu topmenu,