From 8bb30559782452b185ec0cd83a31d432e1358fff Mon Sep 17 00:00:00 2001 From: Resxt <55228336+Resxt@users.noreply.github.com> Date: Mon, 9 Oct 2023 18:50:44 +0200 Subject: [PATCH] chat_commands 1.1.3 Added the NotEnoughPointsError --- chat_commands/chat_commands.gsc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/chat_commands/chat_commands.gsc b/chat_commands/chat_commands.gsc index d5b3d13..431f575 100644 --- a/chat_commands/chat_commands.gsc +++ b/chat_commands/chat_commands.gsc @@ -509,6 +509,11 @@ WeaponDoesNotExistError(weaponName) return array("The weapon " + weaponName + " doesn't exist"); } +NotEnoughPointsError() +{ + return array("You don't have enough points to do that"); +} + /* Utils section */