1. Welcome to the official Starbound Mod repository, Guest! Not sure how to install your mods? Check out the installation guide or check out the modding help thread for more guides.
    Outdated Mods have been moved to their own category! If you update your mod please let a moderator know so we can move it back to the active section.
    Dismiss Notice

Adventure Shop Inventory 1.0.1

Make Marlon sell what you want, when you want, for how much you want.

  1. v1.0.1

    Hammurabi
    Fixed a potential NullReferenceException bug.

    Code:
    using System;
    using System.Collections.Generic;
    using StardewModdingAPI;
    using StardewModdingAPI.Events;
    using StardewValley;
    using StardewValley.Locations;
    using StardewValley.Menus;
    using StardewValley.Objects;
    using StardewValley.Tools;
    
    namespace Adventure_Shop_Inventory {
       public class AdventureShopMod : Mod {
         public bool shopReplaced;
         public Config config;
    
         public override void Entry(IModHelper helper) {...