[Cleanup] Fix typo in #giveitem (#3704)

This commit is contained in:
Alex King 2023-11-22 08:26:54 -05:00 committed by GitHub
parent 2bd94ab7a2
commit 100e6698ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}