Default configuration showing
Something happened (assuming today after wipe but not sure) where the shop is now showing only the default config, where everything buys/sells for 1 each. It does not appear to pick up anything from my config file. 

I tried clearing everything out, letting it create a new config, then adding back my prices, but it still shows the default. The only error I am seeing in the console is from image library:

Loaded plugin GUIShop v1.8.91 by Khan
[Image Library] Starting order GUIShop
[Image Library] There was a error querying Steam for workshop item data : Code (400)
Image failed to download! Error: HTTP/1.1 404 Not Found - Image Name: vehicle.chassis_0 - Image URL: https://rustlabs.com/img/items180/vehicle.chassis.png
Image failed to download! Error: HTTP/1.1 404 Not Found - Image Name: vehicle.module_0 - Image URL: https://rustlabs.com/img/items180/vehicle.module.png
Image batch (GUIShop) has been stored successfully
[Image Library] Starting order GUIShop​

I ran the config through linters, and did not see any error in my config either: https://pastebin.com/1tJR9iPU 

The config cannot have blank commands brackets [ ], Not sure what version you tried updating from.
unknown.png

		"Minicopter": {
			"DisplayName": "Minicopter",
			"Shortname": "",
			"EnableBuy": false,
			"EnableSell": false,
			"Image": "https://i.imgur.com/vI6LwCZ.png",
			"SellPrice": 1.0,
			"BuyPrice": 1.0,
			"BuyCooldown": 0,
			"SellCooldown": 0,
			"KitName": null,
			"Command": "spawn minicopter \"$player.x $player.y $player.z\"",  <wrong>
			"SkinId": 0
		},

		"Minicopter": {
			"DisplayName": "Minicopter",
			"Shortname": "",
			"EnableBuy": false,
			"EnableSell": false,
			"Image": "https://i.imgur.com/vI6LwCZ.png",
			"SellPrice": 1.0,
			"BuyPrice": 1.0,
			"BuyCooldown": 0,
			"SellCooldown": 0,
			"KitName": null,
			"Command": [ "spawn minicopter \"$player.x $player.y $player.z\"" ],  <Correct>
			"SkinId": 0
		},

 



Merged post

It's also noted on docs as an issue for people coming from too far back of a version. New configs are not generated without those brackets. 

 unknown.png

Thanks! that worked.