From 100e6698eadcfe47f8a7b3630a69081c58d374ed Mon Sep 17 00:00:00 2001 From: Alex King <89047260+Kinglykrab@users.noreply.github.com> Date: Wed, 22 Nov 2023 08:26:54 -0500 Subject: [PATCH] [Cleanup] Fix typo in #giveitem (#3704) --- zone/gm_commands/giveitem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/gm_commands/giveitem.cpp b/zone/gm_commands/giveitem.cpp index cd4bb5fb4..66a05554e 100755 --- a/zone/gm_commands/giveitem.cpp +++ b/zone/gm_commands/giveitem.cpp @@ -2,7 +2,7 @@ void command_giveitem(Client *c, const Seperator *sep) { - if (!c->GetTarget() || !!c->GetTarget()->IsClient()) { + if (!c->GetTarget() || !c->GetTarget()->IsClient()) { c->Message(Chat::White, "You must target a player to use this command."); return; }