public static int ReloadConfigData(IntPtr l)
    {
        int result;

        try
        {
            HeroPhantomCollections heroPhantomCollections = (HeroPhantomCollections)LuaObject.checkSelf(l);
            heroPhantomCollections.ReloadConfigData();
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }