From 9f282c4f664cce3e41688dd253a9738fc882a5b9 Mon Sep 17 00:00:00 2001 From: Anton Tarasenko Date: Fri, 1 Jul 2022 02:30:00 +0700 Subject: [PATCH] Fix comment for `Command` class --- sources/Commands/Command.uc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sources/Commands/Command.uc b/sources/Commands/Command.uc index 88d15bf..7d43aa7 100644 --- a/sources/Commands/Command.uc +++ b/sources/Commands/Command.uc @@ -1,9 +1,9 @@ /** * This class is meant to represent a command type: to create new command * one should extend it, then simply define required sub-commands/options and - * parameters in `BuildData()` and overload `Execute()` / `ExecuteFor()` + * parameters in `BuildData()` and overload `Executed()` / `ExecutedFor()` * to perform required actions when command is executed by a player. - * `Execute()` is called first, whenever command is executed and + * `Executed()` is called first, whenever command is executed and * `ExecuteFor()` is called only for targeted commands, once for each * targeted player. * Copyright 2021 - 2022 Anton Tarasenko