From d4c314f6fda80a7a7e33ee2f39772c42de987558 Mon Sep 17 00:00:00 2001 From: Anton Tarasenko Date: Tue, 7 Jun 2022 19:08:28 +0700 Subject: [PATCH] Add `ACommandInventory` at the Futility's start --- sources/Futility_Feature.uc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sources/Futility_Feature.uc b/sources/Futility_Feature.uc index 357fc89..f4ed30a 100644 --- a/sources/Futility_Feature.uc +++ b/sources/Futility_Feature.uc @@ -37,6 +37,7 @@ protected function OnEnabled() commandsFeature.RegisterCommand(class'ACommandNick'); commandsFeature.RegisterCommand(class'ACommandTrader'); commandsFeature.RegisterCommand(class'ACommandDB'); + commandsFeature.RegisterCommand(class'ACommandInventory'); } protected function OnDisabled() @@ -51,6 +52,7 @@ protected function OnDisabled() commandsFeature.RemoveCommand(class'ACommandNick'); commandsFeature.RemoveCommand(class'ACommandTrader'); commandsFeature.RemoveCommand(class'ACommandDB'); + commandsFeature.RemoveCommand(class'ACommandInventory'); } }