Skip to content

Commit

Permalink
fixes toolshed commands
Browse files Browse the repository at this point in the history
  • Loading branch information
deathride58 committed Dec 6, 2023
1 parent adb04a4 commit f905ed1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Content.Server/_Citadel/Thalers/Toolshed/BankCommand.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
using Content.Shared.FixedPoint;
using Content.Server.Administration;
using Content.Shared.Administration;
using Content.Shared.FixedPoint;
using Robust.Shared.Toolshed;
using Robust.Shared.Toolshed.Syntax;

namespace Content.Server._Citadel.Thalers.Toolshed;

[ToolshedCommand]
[ToolshedCommand, AdminCommand(AdminFlags.Debug)]
public sealed class BankCommand : ToolshedCommand
{
private PersonalBankSystem? _bank;
Expand Down
12 changes: 12 additions & 0 deletions Resources/Locale/en-US/_citadel/citadel-toolshed.ftl
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
command-description-bank-getthalers = Returns the Thaler count of the target bank account.
command-description-bank-adjust = Adjusts the Thaler count of the target bank account.
command-description-contract-new = Creates a new contract of the specified type.
command-description-contract-bindto = Binds a contract to the mind of a given session.
command-description-contract-owningnew = Creates a new contract of a specified type and ties it to the mind of a given session.
command-description-contract-list = Lists contracts.
command-description-contract-detail = Provides detail of the status of a given contract.
command-description-contract-activate = Attempts to activate a contract.
command-description-contract-finalize = Attempts to finalize a contract.
command-description-contract-breach = Attempts to breach a contract.
command-description-contract-cancel = Makes the contract loudly complain on social media.

0 comments on commit f905ed1

Please sign in to comment.