spencermcghin / EldritchMUSH

0 stars 0 forks source link

Inventory - Change to new inv system #127

Closed spencermcghin closed 4 years ago

spencermcghin commented 4 years ago

Inventory will be a list object that stores key, value pairs as in [{"Refined Wood": 1}, {"Iron Short Weapon": 2}]. Every item added will append to the inventory object or in the case that it's already present, simply add one more to the current total for that item. Need to update inventory command Need to update how at_get works for obj class

spencermcghin commented 4 years ago

New idea:

Change to counting number of same item in inventory and displaying that alongside the item name.

spencermcghin commented 4 years ago

Done