GenieClient / Genie4

.NET 6 Update of Genie
GNU General Public License v3.0
21 stars 14 forks source link

Inventory View plugin and #config showlinks #106

Closed hat071af closed 12 months ago

hat071af commented 2 years ago

When selecting "Scan Inventory" from the default Inventory View plugin from the plugins zip file, it only outputs the INVENTORY LIST command if #config showlinks has been enabled. Normal behavior is that it would also check your vault, eddy and home.

Disabling showlinks does not resolve it, however reloading the Inventory View plugin once showlinks has been disabled does.

Thires commented 2 years ago

that is because of the plugin itself else if (ScanMode == "Inventory") { if (text.StartsWith("[Use INVENTORY HELP"))

it is looking for that and with showlinks it is [Use \INVENTORY HELP\ for more options.]

quick easy fix is just to have if (text.StartsWith("[Use"))

not even sure that section is required

mj-colonel-panic commented 12 months ago

closing as this an InventoryView issue