Browse Source

Add `ACommandInventory` at the Futility's start

feature_improvement
Anton Tarasenko 2 years ago
parent
commit
d4c314f6fd
  1. 2
      sources/Futility_Feature.uc

2
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');
}
}

Loading…
Cancel
Save