From 6d2cc6156c3e2dc0e7fe6528df40babd454818e8 Mon Sep 17 00:00:00 2001 From: Nerman Date: Mon, 22 Apr 2024 17:59:00 +0200 Subject: [PATCH] fix typo (tagetid > targetid) --- YSI_Visual/y_commands/features.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/YSI_Visual/y_commands/features.md b/YSI_Visual/y_commands/features.md index 4d910c77..7a9e83ec 100644 --- a/YSI_Visual/y_commands/features.md +++ b/YSI_Visual/y_commands/features.md @@ -317,7 +317,7 @@ More specifically, these are per-player commands, or dynamic commands. They all SendClientMessage(playerid, COLOUR_GREETING, reply); @return 1; } - Command_AddCallback("r", tagetid, using inline SendReply); + Command_AddCallback("r", targetid, using inline SendReply); return 1; } @@ -329,7 +329,7 @@ One problem with this version is that it will slowly run out of memory, because ```pawn // Just in case, remove any old versions of `/r`: - Command_RemoveCallback("r", tagetid); + Command_RemoveCallback("r", targetid); ``` Notes: