Skip to content

Commit e615143

Browse files
committed
Update text related to inv2 command
1 parent 8e83a14 commit e615143

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

command/inventory_v2.go

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ func (c InventoryV2Command) Description() string {
6868
if c.corp == nil {
6969
return "Requires authentication."
7070
}
71-
return fmt.Sprintf("Manipulate inventory for %s.", c.corp.Name)
71+
return fmt.Sprintf("EXPERIMENTAL: Interactive inventory management.")
7272
}
7373

7474
type selectItem struct {
@@ -476,15 +476,20 @@ func (c InventoryV2Command) Handle(subcmd string, args ...string) {
476476

477477
func (c InventoryV2Command) PrintHelp() {
478478
fmt.Println()
479-
fmt.Println(fmt.Sprintf(`Command "%s" is an interactive editor used for manipulating inventory thresholds and alerting.`, text.Boldf("inventory2")))
479+
fmt.Println(text.WrapText(
480+
fmt.Sprintf(`Command "%s" is an interactive editor used for manipulating inventory thresholds and alerting.`, text.Boldf("inventory2")),
481+
text.StandardTerminalWidthInChars))
482+
fmt.Println()
483+
fmt.Println(text.Boldf("EXPERIMENTAL"))
484+
fmt.Println(text.WrapText("This command is experimental and definitely still has issues left to be worked out. You have been warned.", text.StandardTerminalWidthInChars))
480485
fmt.Println()
481486
if c.corp != nil {
482487
fmt.Println(text.Boldf("Character linked!"))
483488
fmt.Println(fmt.Sprintf("You are logged in as %s for %s.",
484489
text.Boldf(c.character.Name),
485490
text.Boldf(c.corp.Name)))
486491
fmt.Println()
487-
fmt.Println(text.WrapText(`This command will operate on inventory for your corporation. Corporation-owned assets will be tracked to display available and missing materials.`, text.StandardTerminalWidthInChars))
492+
fmt.Println(text.WrapText(`This command will operate on inventory for your corporation. Corporation-owned structures and assets are used when calculating inventory levels. If an inventory level goes below a configurable threshold, it is made to stand out when viewing the list.`, text.StandardTerminalWidthInChars))
488493
}
489494
fmt.Println()
490495
}

0 commit comments

Comments
 (0)