Tutorial How to Report Mod Errors & Fixing Most Problems Yourself v1.1

Discussion in 'Starbound Modding' started by The | Suit, Feb 4, 2014.

  1. moomoomilkman

    moomoomilkman Void-Bound Voyager

    for some reason, i cant see parts of phrases unless i highlight it. is this on purpose?
     
  2. The | Suit

    The | Suit Agent S. Forum Moderator

    Original Forum them was black background.
    It was a few months ago the default theme turned to white.
     
    moomoomilkman likes this.
  3. moomoomilkman

    moomoomilkman Void-Bound Voyager

    AAAHHH ok. Thank you for clearing that up friend! :nuruhappy:
     
  4. STARS999999

    STARS999999 Scruffy Nerf-Herder

    So, I'm trying to make a mod with a patch that makes the Erchius Ghost vincible and able to be captured. I put the code into a JSON parser and everything, but I get this error every time I go to a moon with Erchius on me.
    Code:
    [16:38:32.458] [Warn] Could not spawn Monster of type 'erchiusghost', exception caught: (JsonException) Improper conversion to double from string
    I get this error multiple times; every time the game tries to spawn the Erchius Ghost, in fact. All I know about this is that it couldn't spawn. I have no idea why. Here is the code for the mod.
    Code:
    [
        {
            "op": "replace",
            "path": "/baseParameters/statusSettings/stats/maxHealth/baseValue",
            "value": "500"
        },
        {
            "op": "replace",
            "path": "/description",
            "value": "What even is this?"
        },
        {
            "op": "replace",
            "path": "/baseParameters/statusSettings/stats/protection/baseValue",
            "value": "0"
        },
        {
            "op": "replace",
            "path": "/baseParameters/statusSettings/stats/invulnerable/baseValue",
            "value": "0.0"
        },
        {
            "op": "replace",
            "path": "/baseParameters/statusSettings/stats/fireStatusImmunity/baseValue",
            "value": "0.0"
        },
        {
            "op": "replace",
            "path": "/baseParameters/statusSettings/stats/iceStatusImmunity/baseValue",
            "value": "0.0"
        },
        {
            "op": "replace",
            "path": "/baseParameters/statusSettings/stats/electricStatusImmunity/baseValue",
            "value": "0.0"
        },
        {
            "op": "replace",
            "path": "/baseParameters/statusSettings/stats/poisonStatusImmunity/baseValue",
            "value": "0.0"
        },
        {
            "op": "replace",
            "path": "/baseParameters/statusSettings/stats/lavaImmunity/baseValue",
            "value": "0.0"
        },
        {
            "op": "replace",
            "path": "/baseParameters/capturable",
            "value": "true"
        },
        {
            "op": "replace",
            "path": "/baseParameters/captureHealthFraction",
            "value": "0.5"
        },
        {
            "op": "add",
            "path": "/baseParameters/capturedMonsterName",
            "value": "Erchius Ghost"
        },
        {
            "op": "add",
            "path": "/baseParameters/capturedMonsterType",
            "value": "erchiusghost"
        }
    ]
     
  5. The | Suit

    The | Suit Agent S. Forum Moderator

    Don't put quotes around numbers in patch
     
  6. STARS999999

    STARS999999 Scruffy Nerf-Herder

    Thanks.
     
  7. CatofRiddles

    CatofRiddles Subatomic Cosmonaut

    I keep running into this problem:

    Code:
    [02:02:36.459] [Error] Could not apply patch from file /species/avian.species.patch in source: ..\mods\Puzzlebound.  Caused by: (JsonPatchException) Could not apply patch to base. (JsonPatchException) Could not apply operation to base. (TraversalException) Could not remove element after end of array
     
  8. The | Suit

    The | Suit Agent S. Forum Moderator

    Unless you post your patch code,
    and code for original file you want to patch

    There is no way to help you.
     
  9. IHart

    IHart Scruffy Nerf-Herder

    I gave you the solution to this on your thread.
     
  10. SpazDiesFirst360.0

    SpazDiesFirst360.0 Phantasmal Quasar

    I created a broadsword for my first mod, and everything works okay until I try using it's primary ability. The game crashes, and the error(s) below pop up in my Starbound log;

    [Error] Exception while invoking lua function 'update'. (LuaException) Error code 2, [string "/items/active/weapons/weapon.lua"]:119: [string "/items/active/weapons/weapon.lua"]:180: [string "/items/active/weapons/melee/meleecombo.lua"]:177: (MapException) Key 'fire2' not found in OrderedMap::get()

    I do not understand what this bit means, but all that stood out to me were the file location strings. Log should be attached, but I cannot attach the code I used.

    Can anyone tell me what this error means and maybe how to fix it?

    EDIT: 'fire2' appears to be related to weapon use. Maybe I need cases for 'fire', 'fire2' and 'fire3'?
     

    Attached Files:

    Last edited: May 24, 2017
  11. Ramones_fan

    Ramones_fan Pangalactic Porcupine

    Code:
    [17:32:29.142] [Error] Could not apply patch from file /player.config.patch in source: C:\Program Files (x86)\Steam\steamapps\workshop\content\211820\906354183\contents.pak.  Caused by: (JsonPatchException) Could not apply patch to base. (JsonPatchException) Could not apply operation to base. (TraversalException) No such key 'tier3' in pathApply("/defaultBlueprints/tier3/-")
    
    it looks like there is a problem in one of the workshop files, i may be wrong as i don't have the code of what you were working on to look at. there may be other errors as well
     
  12. SpazDiesFirst360.0

    SpazDiesFirst360.0 Phantasmal Quasar

    Activeitem:
    Code:
    {
      "itemName" : "bluetestsword",
      "price" : 1000000,
      "level" : 6,
      "maxStack" : 1,
      "rarity" : "Legendary",
      "description" : "This sword would be worth millions. If I sold it.",
      "shortdescription" : "Alundril",
      "tooltipKind" : "sword",
      "category" : "broadsword",
      "twoHanded" : true,
      "itemTags" : ["weapon","melee","broadsword"],
    
      "inventoryIcon" : "bluetestsword.png",
    
      "animation" : "/items/active/weapons/melee/broadsword/broadsword.animation",
      "animationCustom" : { },
    
      "scripts" : ["/items/active/weapons/melee/meleeweapon.lua"],
    
      "elementalType" : "physical",
    
      "primaryAbilityType" : "broadswordcombo",
      "primaryAbility" : {
        "fireTime" : 0.83,
        "baseDps" : 900
      },
    
      "altAbilityType" : "risingslash",
    
      "builder" : "/items/buildscripts/buildunrandweapon.lua"
    }
    
    Animation:
    Code:
    {
      "globalTagDefaults" : {
        "paletteSwaps" : ""
      },
    
      "animatedParts" : {
        "stateTypes" : {
          "swoosh" : {
            "default" : "idle",
            "states" : {
              "idle" : {
              },
              "fire" : {
                "frames" : 3,
                "cycle" : 0.07,
                "mode" : "transition",
                "transition" : "idle"
              }
            }
          }
        },
    
        "parts" : {
          "blade" : {
            "properties" : {
              "zLevel" : 0,
              "centered" : true,
              "image" : "bluetestsword.png<paletteSwaps>?<directives>?<bladeDirectives>",
              "offset" : [0, 1.875],
              "transformationGroups" : ["weapon"],
              "rotationCenter" : [0, 0],
              "damageArea" : [ [-0.7, -1.0], [-0.7, 2.5], [0.5, 2.5], [0.5, -1.0] ]
            }
          },
          "handle" : {
            "properties" : {
              "zLevel" : 1,
              "centered" : true,
              "image" : "<partImage><paletteSwaps>?<directives>",
              "offset" : [0, 1.875],
              "transformationGroups" : ["weapon"],
              "rotationCenter" : [0, 0]
            }
          },
          "swoosh" : {
            "properties" : {
              "zLevel" : -1,
              "centered" : true,
              "offset" : [-0.25, 2.5],
              "transformationGroups" : ["swoosh"],
              "rotationCenter" : [0, 0]
            },
    
            "partStates" : {
              "swoosh" : {
                "idle" : {
                  "properties" : {
                    "image" : ""
                  }
                },
                "fire" : {
                  "properties" : {
                    "image" : "/items/active/weapons/melee/broadsword/swoosh/tearswoosh.png:<frame>",
                    "damageArea" : [[-5, 2], [-2.5, 3], [1, 3], [4, 1.75], [5, -0.25], [5, -2.25], [4, -3.25], [0, -2.5]]
                  }
                }
              }
            }
          }
        }
      },
    
      "transformationGroups" : {
        "weapon" : {},
        "swoosh" : {}
      },
    
      "particleEmitters" : {
        "physicalswoosh" : {
          "active" : false,
          "transformationGroups" : ["swoosh"],
          "emissionRate" : 50,
          "offsetRegion" : [0.75, 0.0, 4.25, 5.0],
          "particles" : [
          ]
        },
        "fireswoosh" : {
          "active" : false,
          "transformationGroups" : ["swoosh"],
          "emissionRate" : 50,
          "offsetRegion" : [0.75, 0.0, 4.25, 5.0],
          "particles" : [
            { "particle" : "fireswoosh1"},
            { "particle" : "fireswoosh2"},
            { "particle" : "fireswoosh3"},
            { "particle" : "fireswoosh1"},
            { "particle" : "fireswoosh2"},
            { "particle" : "fireswoosh3"}
          ]
        },
        "electricswoosh" : {
          "active" : false,
          "transformationGroups" : ["swoosh"],
          "emissionRate" : 50,
          "offsetRegion" : [0.75, 0.0, 4.25, 5.0],
          "particles" : [
            { "particle" : "electricswoosh1"},
            { "particle" : "electricswoosh2"},
            { "particle" : "electricswoosh2"}
          ]
        },
        "poisonswoosh" : {
          "active" : false,
          "transformationGroups" : ["swoosh"],
          "emissionRate" : 50,
          "offsetRegion" : [0.75, 0.0, 4.25, 5.0],
          "particles" : [
            { "particle" : "poisonswoosh1"},
            { "particle" : "poisonswoosh2"},
            { "particle" : "fireswoosh2"},
            { "particle" : "poisonswoosh1"},
            { "particle" : "poisonswoosh2"},
            { "particle" : "fireswoosh2"}
          ]
        },
        "iceswoosh" : {
          "active" : false,
          "transformationGroups" : ["swoosh"],
          "emissionRate" : 50,
          "offsetRegion" : [0.75, 0.0, 4.25, 5.0],
          "particles" : [
            { "particle" : "iceswoosh1"},
            { "particle" : "iceswoosh2"},
            { "particle" : "iceswoosh3"},
            { "particle" : "iceswoosh1"},
            { "particle" : "iceswoosh2"},
            { "particle" : "iceswoosh3"}
          ]
        }
      },
    
      "sounds" : {
        "fire" : [ ]
      }
    }
    
     
  13. SpazDiesFirst360.0

    SpazDiesFirst360.0 Phantasmal Quasar

    I noticed this has been continuously appearing in my logs:


    [Error] Exception while creating lua context for scripts '('/achievements/event.lua')': (LuaException) Error code 2, [string "/achievements/event.lua"]:66: attempt to call a nil value (global 'parseArgs')
    stack traceback:
    [C]: in global 'parseArgs'
    [string "/achievements/event.lua"]:66: in global 'makeOperator'
    [string "/achievements/event.lua"]:87: in main chunk
    [0] 7ff647657713 Star::captureStack
    [1] 7ff64765649e Star::StarException::StarException
    [2] 7ff64762ac61 Star::LuaEngine::handleError
    [3] 7ff64762b98b Star::LuaContext::load
    [4] 7ff647cdb3cf Star::LuaRoot::ScriptCache::loadContextScript
    [5] 7ff647cdaf0e Star::LuaRoot::createContext
    [6] 7ff647cc41fa Star::LuaBaseComponent::init
    [7] 7ff647a60ea7 Star::Statistics::runStatScript<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData>,Star::String const & __ptr64,Star::Json const & __ptr64>
    [8] 7ff647a647cc Star::Statistics::processEvent
    [9] 7ff647a657f3 Star::Statistics::update
    [10] 7ff647b0c4d4 Star::UniverseClient::update
    [11] 7ff64759eae7 Star::ClientApplication::updateRunning
    [12] 7ff64759d3df Star::ClientApplication::update
    [13] 7ff647d9aec2 Star::SdlPlatform::run
    [14] 7ff647d9b07d Star::runMainApplication
    [15] 7ff6475a0506 WinMain
    [16] 7ff647f885ff __scrt_common_main_seh
    [17] 7ffbcefc2774 BaseThreadInitThunk
    [18] 7ffbd0d50d61 RtlUserThreadStart


    I am not sure if it is a mod that is causing this, but it is getting absurdly annoying having this in my logs. Sometimes there will be a chain of around at least ten of these in a row.
     
  14. SpazDiesFirst360.0

    SpazDiesFirst360.0 Phantasmal Quasar

    Help! All my .frames files are breaking. I have all the frames defined, but the game continuously says that no such frame exists. It is breaking almost all my objects in my mod, and I cannot figure out why this is happening.

    For example, I made a decorative object called "Desk Fan". The frames file is below:

    Code:
    {
    
      "frameGrid" : {
        "size" : [16, 16],
        "dimensions" : [5, 1],
        "names" : [
          [ "default.0", "default.1", "default.2", "default.3", "default.off" ]
        ]
      },
    
      "aliases" : {
        "default.default" : "default.off"
      }
    }
    


    With this image:
    paa_deskfan.png

    And the log just says this:

    [Error] Could not load image asset '/paa_deskfan.png:default', using placeholder default.
    (AssetException) No such frame default in frames spec /paa_deskfan.frames
     
  15. CatofRiddles

    CatofRiddles Subatomic Cosmonaut

    I've been having problems with the bmain.lua file. i keep getting an error like this one and i can't figure out the problem.
    Code:
     [23:44:55.633] [Error] Exception while invoking lua function 'update'. (LuaException) Error code 2, [string "/npcs/bmain.lua"]:162: (StarException) Lua Exception caught running action node chooseReaction in behavior crewmember: (LuaException) Error code 2, [string "/scripts/actions/reaction.lua"]:20: (StarException) Entity 32191 does not exist or is not a local master scripted entity 

    Here is the full log, if it's needed.

    Code:
    [08:17:10.338] [Info] Root: Preparing Root...
    [08:17:10.340] [Info] Root: Done preparing Root.
    [08:17:10.340] [Info] Client Version 1.3.1 (windows x86_64) Source ID: 09b4358d76e61cf447ecb3e11612af0c2f387fad Protocol: 742
    [08:17:10.340] [Info] Root: Scanning for asset sources in directory '..\assets\'
    [08:17:10.983] [Info] Root: Scanning for asset sources in directory '..\mods\'
    [08:17:12.659] [Info] Root: Detected asset source named 'base' at '..\assets\packed.pak'
    [08:17:12.659] [Info] Root: Detected asset source named 'AnimeBound' at '..\mods\AnimeBound'
    [08:17:12.659] [Info] Root: Detected asset source named 'Earth's Finest - Crew Improvements' at '..\mods\Crew_Plus'
    [08:17:12.659] [Info] Root: Detected unnamed asset source at '..\mods\FrackinUniverse FPS Boost'
    [08:17:12.659] [Info] Root: Detected asset source named 'Glitch Cat' at '..\mods\Glitch Cat'
    [08:17:12.659] [Info] Root: Detected unnamed asset source at '..\mods\Higher Tier Guard Tenants'
    [08:17:12.659] [Info] Root: Detected unnamed asset source at '..\mods\InvisClothes'
    [08:17:12.660] [Info] Root: Detected unnamed asset source at '..\mods\NPC Patches'
    [08:17:12.660] [Info] Root: Detected asset source named 'Puzzle's Recipes' at '..\mods\Puzzle Recipes'
    [08:17:12.660] [Info] Root: Detected asset source named 'Racial Crafting & Printing' at '..\mods\Racial Crafting & Printing by Tremerion'
    [08:17:12.660] [Info] Root: Detected asset source named 'playerportraits' at '..\mods\artwork.pak'
    [08:17:12.660] [Info] Root: Detected asset source named 'NonUniform' at '..\mods\nonuniformv2_02'
    [08:17:12.660] [Info] Root: Detected unnamed asset source at '..\assets\user'
    [08:17:12.660] [Info] Loading assets from: '..\assets\packed.pak'
    [08:17:13.365] [Info] Loading assets from: '..\mods\AnimeBound'
    [08:17:13.493] [Info] Loading assets from: '..\mods\Crew_Plus'
    [08:17:13.495] [Info] Loading assets from: '..\mods\FrackinUniverse FPS Boost'
    [08:17:13.579] [Info] Loading assets from: '..\mods\Glitch Cat'
    [08:17:13.580] [Info] Loading assets from: '..\mods\Higher Tier Guard Tenants'
    [08:17:13.586] [Info] Loading assets from: '..\mods\InvisClothes'
    [08:17:13.588] [Info] Loading assets from: '..\mods\NPC Patches'
    [08:17:13.590] [Info] Loading assets from: '..\mods\Puzzle Recipes'
    [08:17:13.593] [Info] Loading assets from: '..\mods\Racial Crafting & Printing by Tremerion'
    [08:17:13.706] [Info] Loading assets from: '..\mods\artwork.pak'
    [08:17:13.707] [Info] Loading assets from: '..\mods\nonuniformv2_02'
    [08:17:13.709] [Info] Loading assets from: '..\assets\user'
    [08:17:46.354] [Info] Assets digest is 9d3a62f0eef9f5e8bc42adece8fa00659ca954712cb74dbf806d55a29e763331
    [08:17:46.354] [Info] Root: Loaded Assets in 36.0143 seconds
    [08:17:46.375] [Info] Application: Initializing SDL Video
    [08:17:46.409] [Info] Application: Initializing SDL Joystick
    [08:17:46.633] [Info] Application: Initializing SDL Sound
    [08:17:47.637] [Info] Initialized Steam services
    [08:17:47.682] [Info] Application: Creating SDL Window
    [08:17:48.489] [Info] Application: Enabling VSync with late swap tearing
    [08:17:48.602] [Info] Application: Opened default audio device with 44.1khz / 16 bit stereo audio, 2048 sample size buffer
    [08:17:48.619] [Info] OpenGL version: '3.1.0 - Build 9.17.10.4459' vendor: 'Intel' renderer: 'Intel(R) HD Graphics 3000' shader: '1.40 - Intel Build 9.17.10.4459'
    [08:17:48.922] [Info] Application: initialization...
    [08:17:48.944] [Info] Root: Loaded Configuration in 0.0225934 seconds
    [08:17:49.128] [Info] Application: renderer initialization...
    [08:17:49.211] [Info] detected supported OpenGL texture size 8192, using atlasNumCells 128
    [08:17:49.251] [Info] detected supported OpenGL texture size 8192, using atlasNumCells 64
    [08:17:49.254] [Info] Root: Loaded ImageMetadataDatabase in 1.78491e-06 seconds
    [08:17:49.425] [Info] Application: main update loop...
    [08:17:49.475] [Info] Loading mods from user generated content with id '744492975' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\744492975'
    [08:17:49.476] [Info] Loading mods from user generated content with id '805114817' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\805114817'
    [08:17:49.476] [Info] Loading mods from user generated content with id '951696176' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\951696176'
    [08:17:49.477] [Info] Loading mods from user generated content with id '951697307' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\951697307'
    [08:17:49.477] [Info] Loading mods from user generated content with id '951717365' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\951717365'
    [08:17:49.478] [Info] Loading mods from user generated content with id '949437025' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\949437025'
    [08:17:49.479] [Info] Loading mods from user generated content with id '947718575' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\947718575'
    [08:17:49.479] [Info] Loading mods from user generated content with id '945997480' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\945997480'
    [08:17:49.479] [Info] Loading mods from user generated content with id '945393508' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\945393508'
    [08:17:49.480] [Info] Loading mods from user generated content with id '945460267' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\945460267'
    [08:17:49.481] [Info] Loading mods from user generated content with id '942632292' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\942632292'
    [08:17:49.481] [Info] Loading mods from user generated content with id '737358264' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\737358264'
    [08:17:49.482] [Info] Loading mods from user generated content with id '734569205' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\734569205'
    [08:17:49.482] [Info] Loading mods from user generated content with id '742376260' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\742376260'
    [08:17:49.483] [Info] Loading mods from user generated content with id '739997317' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\739997317'
    [08:17:49.484] [Info] Loading mods from user generated content with id '762759012' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\762759012'
    [08:17:49.485] [Info] Loading mods from user generated content with id '760142889' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\760142889'
    [08:17:49.485] [Info] Loading mods from user generated content with id '938540333' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\938540333'
    [08:17:49.486] [Info] Loading mods from user generated content with id '885526333' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\885526333'
    [08:17:49.486] [Info] Loading mods from user generated content with id '936974467' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\936974467'
    [08:17:49.487] [Info] Loading mods from user generated content with id '911209828' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\911209828'
    [08:17:49.487] [Info] Loading mods from user generated content with id '907216757' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\907216757'
    [08:17:49.488] [Info] Loading mods from user generated content with id '902111753' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\902111753'
    [08:17:49.488] [Info] Loading mods from user generated content with id '895140470' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\895140470'
    [08:17:49.488] [Info] Loading mods from user generated content with id '894901052' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\894901052'
    [08:17:49.489] [Info] Loading mods from user generated content with id '890205989' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\890205989'
    [08:17:49.489] [Info] Loading mods from user generated content with id '889774441' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\889774441'
    [08:17:49.490] [Info] Loading mods from user generated content with id '883901189' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\883901189'
    [08:17:49.490] [Info] Loading mods from user generated content with id '879213535' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\879213535'
    [08:17:49.490] [Info] Loading mods from user generated content with id '877011167' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\877011167'
    [08:17:49.491] [Info] Loading mods from user generated content with id '867218094' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\867218094'
    [08:17:49.491] [Info] Loading mods from user generated content with id '862287085' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\862287085'
    [08:17:49.492] [Info] Loading mods from user generated content with id '860578021' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\860578021'
    [08:17:49.492] [Info] Loading mods from user generated content with id '855668523' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\855668523'
    [08:17:49.492] [Info] Loading mods from user generated content with id '854495770' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\854495770'
    [08:17:49.493] [Info] Loading mods from user generated content with id '830314107' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\830314107'
    [08:17:49.493] [Info] Loading mods from user generated content with id '821419055' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\821419055'
    [08:17:49.494] [Info] Loading mods from user generated content with id '817468961' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\817468961'
    [08:17:49.494] [Info] Loading mods from user generated content with id '791323957' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\791323957'
    [08:17:49.494] [Info] Loading mods from user generated content with id '783742589' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\783742589'
    [08:17:49.495] [Info] Loading mods from user generated content with id '782825930' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\782825930'
    [08:17:49.495] [Info] Loading mods from user generated content with id '782262701' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\782262701'
    [08:17:49.495] [Info] Loading mods from user generated content with id '776078387' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\776078387'
    [08:17:49.496] [Info] Loading mods from user generated content with id '773691656' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\773691656'
    [08:17:49.496] [Info] Loading mods from user generated content with id '763222616' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\763222616'
    [08:17:49.497] [Info] Loading mods from user generated content with id '759587111' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\759587111'
    [08:17:49.497] [Info] Loading mods from user generated content with id '757272346' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\757272346'
    [08:17:49.497] [Info] Loading mods from user generated content with id '756687845' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\756687845'
    [08:17:49.498] [Info] Loading mods from user generated content with id '753188786' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\753188786'
    [08:17:49.498] [Info] Loading mods from user generated content with id '751868467' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\751868467'
    [08:17:49.498] [Info] Loading mods from user generated content with id '750425376' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\750425376'
    [08:17:49.499] [Info] Loading mods from user generated content with id '749386227' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\749386227'
    [08:17:49.499] [Info] Loading mods from user generated content with id '749382770' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\749382770'
    [08:17:49.500] [Info] Loading mods from user generated content with id '749138636' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\749138636'
    [08:17:49.500] [Info] Loading mods from user generated content with id '747814787' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\747814787'
    [08:17:49.501] [Info] Loading mods from user generated content with id '747805059' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\747805059'
    [08:17:49.501] [Info] Loading mods from user generated content with id '747774241' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\747774241'
    [08:17:49.502] [Info] Loading mods from user generated content with id '747281963' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\747281963'
    [08:17:49.502] [Info] Loading mods from user generated content with id '743604545' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\743604545'
    [08:17:49.502] [Info] Loading mods from user generated content with id '742786243' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\742786243'
    [08:17:49.502] [Info] Loading mods from user generated content with id '742474661' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\742474661'
    [08:17:49.502] [Info] Loading mods from user generated content with id '741491949' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\741491949'
    [08:17:49.503] [Info] Loading mods from user generated content with id '741194961' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\741194961'
    [08:17:49.503] [Info] Loading mods from user generated content with id '740750449' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\740750449'
    [08:17:49.503] [Info] Loading mods from user generated content with id '740675828' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\740675828'
    [08:17:49.503] [Info] Loading mods from user generated content with id '740385324' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\740385324'
    [08:17:49.504] [Info] Loading mods from user generated content with id '740177390' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\740177390'
    [08:17:49.504] [Info] Loading mods from user generated content with id '739703276' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\739703276'
    [08:17:49.504] [Info] Loading mods from user generated content with id '738272039' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\738272039'
    [08:17:49.504] [Info] Loading mods from user generated content with id '737195784' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\737195784'
    [08:17:49.505] [Info] Loading mods from user generated content with id '737027388' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\737027388'
    [08:17:49.505] [Info] Loading mods from user generated content with id '736593129' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\736593129'
    [08:17:49.505] [Info] Loading mods from user generated content with id '736027516' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\736027516'
    [08:17:49.505] [Info] Loading mods from user generated content with id '735909966' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\735909966'
    [08:17:49.505] [Info] Loading mods from user generated content with id '735253889' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\735253889'
    [08:17:49.505] [Info] Loading mods from user generated content with id '734737440' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\734737440'
    [08:17:49.506] [Info] Loading mods from user generated content with id '734706471' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\734706471'
    [08:17:49.506] [Info] Loading mods from user generated content with id '734607596' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\734607596'
    [08:17:49.506] [Info] Loading mods from user generated content with id '734581251' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\734581251'
    [08:17:49.506] [Info] Loading mods from user generated content with id '734473807' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\734473807'
    [08:17:49.507] [Info] Loading mods from user generated content with id '733403716' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\733403716'
    [08:17:49.507] [Info] Loading mods from user generated content with id '732908496' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\732908496'
    [08:17:49.507] [Info] Loading mods from user generated content with id '732742952' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\732742952'
    [08:17:49.507] [Info] Loading mods from user generated content with id '732341098' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\732341098'
    [08:17:49.507] [Info] Loading mods from user generated content with id '731818324' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\731818324'
    [08:17:49.507] [Info] Loading mods from user generated content with id '731648067' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\731648067'
    [08:17:49.508] [Info] Loading mods from user generated content with id '731538310' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\731538310'
    [08:17:49.508] [Info] Loading mods from user generated content with id '731358672' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\731358672'
    [08:17:49.508] [Info] Loading mods from user generated content with id '731354142' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\731354142'
    [08:17:49.508] [Info] Loading mods from user generated content with id '731220462' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\731220462'
    [08:17:49.509] [Info] Loading mods from user generated content with id '731199031' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\731199031'
    [08:17:49.509] [Info] Loading mods from user generated content with id '731044896' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\731044896'
    [08:17:49.509] [Info] Loading mods from user generated content with id '730918134' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\730918134'
    [08:17:49.509] [Info] Loading mods from user generated content with id '730852387' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\730852387'
    [08:17:49.509] [Info] Loading mods from user generated content with id '730801590' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\730801590'
    [08:17:49.509] [Info] Loading mods from user generated content with id '730587191' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\730587191'
    [08:17:49.510] [Info] Loading mods from user generated content with id '730460799' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\730460799'
    [08:17:49.510] [Info] Loading mods from user generated content with id '730378641' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\730378641'
    [08:17:49.510] [Info] Loading mods from user generated content with id '730288317' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\730288317'
    [08:17:49.510] [Info] Loading mods from user generated content with id '730266156' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\730266156'
    [08:17:49.510] [Info] Loading mods from user generated content with id '729824320' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\729824320'
    [08:17:49.511] [Info] Loading mods from user generated content with id '729726478' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\729726478'
    [08:17:49.511] [Info] Loading mods from user generated content with id '729532886' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\729532886'
    [08:17:49.511] [Info] Loading mods from user generated content with id '729512636' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\729512636'
    [08:17:49.511] [Info] Loading mods from user generated content with id '729479587' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\729479587'
    [08:17:49.511] [Info] Loading mods from user generated content with id '729432903' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\729432903'
    [08:17:49.512] [Info] Loading mods from user generated content with id '729428803' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\729428803'
    [08:17:49.512] [Info] Loading mods from user generated content with id '729428280' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\729428280'
    [08:17:49.512] [Info] Loading mods from user generated content with id '729428037' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\729428037'
    [08:17:49.512] [Info] Loading mods from user generated content with id '729427264' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\729427264'
    [08:17:49.512] [Info] Loading mods from user generated content with id '729426797' from directory 'C:\Programs\Steam\steamapps\workshop\content\211820\729426797'
    [08:17:49.512] [Info] Reloading to include all user generated content
    [08:17:49.512] [Info] Root: Reloading from disk
    [08:17:49.512] [Info] Root: Writing runtime configuration to '..\storage\starbound.config'
    [08:17:49.607] [Info] Root: Loaded Configuration in 0.00132753 seconds
    [08:17:49.607] [Info] Root: Scanning for asset sources in directory '..\assets\'
    [08:17:50.101] [Info] Root: Scanning for asset sources in directory '..\mods\'
    [08:17:50.312] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\744492975'
    [08:17:50.411] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\805114817'
    [08:17:50.459] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\951696176'
    [08:17:50.516] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\951697307'
    [08:17:50.558] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\951717365'
    [08:17:50.595] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\949437025'
    [08:17:50.633] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\947718575'
    [08:17:50.652] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\945997480'
    [08:17:50.733] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\945393508'
    [08:17:50.841] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\945460267'
    [08:17:50.876] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\942632292'
    [08:17:50.931] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\737358264'
    [08:17:50.960] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\734569205'
    [08:17:50.985] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\742376260'
    [08:17:51.051] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\739997317'
    [08:17:51.127] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\762759012'
    [08:17:51.191] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\760142889'
    [08:17:51.234] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\938540333'
    [08:17:51.291] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\885526333'
    [08:17:51.325] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\936974467'
    [08:17:51.358] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\911209828'
    [08:17:51.385] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\907216757'
    [08:17:51.415] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\902111753'
    [08:17:51.415] [Info] Root: Skipping hidden '.DS_Store' in asset directory
    [08:17:51.466] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\895140470'
    [08:17:51.525] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\894901052'
    [08:17:51.541] [Info] Root: Skipping hidden '.DS_Store' in asset directory
    [08:17:51.592] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\890205989'
    [08:17:51.623] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\889774441'
    [08:17:51.737] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\883901189'
    [08:17:51.813] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\879213535'
    [08:17:51.862] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\877011167'
    [08:17:51.904] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\867218094'
    [08:17:51.949] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\862287085'
    [08:17:51.950] [Info] Root: Skipping hidden '.DS_Store' in asset directory
    [08:17:51.971] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\860578021'
    [08:17:51.971] [Info] Root: Skipping hidden '.DS_Store' in asset directory
    [08:17:52.009] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\855668523'
    [08:17:52.017] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\854495770'
    [08:17:52.059] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\830314107'
    [08:17:52.078] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\821419055'
    [08:17:52.139] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\817468961'
    [08:17:52.165] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\791323957'
    [08:17:52.190] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\783742589'
    [08:17:52.208] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\782825930'
    [08:17:52.260] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\782262701'
    [08:17:52.287] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\776078387'
    [08:17:52.345] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\773691656'
    [08:17:52.381] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\763222616'
    [08:17:52.427] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\759587111'
    [08:17:52.467] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\757272346'
    [08:17:52.531] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\756687845'
    [08:17:52.563] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\753188786'
    [08:17:52.605] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\751868467'
    [08:17:52.670] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\750425376'
    [08:17:52.726] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\749386227'
    [08:17:52.758] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\749382770'
    [08:17:52.772] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\749138636'
    [08:17:52.793] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\747814787'
    [08:17:52.817] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\747805059'
    [08:17:52.823] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\747774241'
    [08:17:52.874] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\747281963'
    [08:17:52.897] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\743604545'
    [08:17:52.920] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\742786243'
    [08:17:52.957] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\742474661'
    [08:17:53.030] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\741491949'
    [08:17:53.111] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\741194961'
    [08:17:53.154] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\740750449'
    [08:17:53.245] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\740675828'
    [08:17:53.296] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\740385324'
    [08:17:53.325] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\740177390'
    [08:17:53.352] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\739703276'
    [08:17:53.379] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\738272039'
    [08:17:53.412] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\737195784'
    [08:17:53.456] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\737027388'
    [08:17:53.507] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\736593129'
    [08:17:53.536] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\736027516'
    [08:17:53.579] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\735909966'
    [08:17:53.629] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\735253889'
    [08:17:53.669] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\734737440'
    [08:17:53.739] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\734706471'
    [08:17:53.748] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\734607596'
    [08:17:53.810] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\734581251'
    [08:17:53.910] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\734473807'
    [08:17:53.946] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\733403716'
    [08:17:54.059] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\732908496'
    [08:17:54.157] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\732742952'
    [08:17:54.224] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\732341098'
    [08:17:54.287] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\731818324'
    [08:17:54.328] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\731648067'
    [08:17:54.391] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\731538310'
    [08:17:54.417] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\731358672'
    [08:17:54.447] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\731354142'
    [08:17:54.525] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\731220462'
    [08:17:54.669] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\731199031'
    [08:17:54.686] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\731044896'
    [08:17:54.728] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\730918134'
    [08:17:54.749] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\730852387'
    [08:17:54.925] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\730801590'
    [08:17:55.059] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\730587191'
    [08:17:55.100] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\730460799'
    [08:17:55.148] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\730378641'
    [08:17:55.202] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\730288317'
    [08:17:55.216] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\730266156'
    [08:17:55.266] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\729824320'
    [08:17:55.314] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\729726478'
    [08:17:55.366] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\729532886'
    [08:17:55.388] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\729512636'
    [08:17:55.426] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\729479587'
    [08:17:55.491] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\729432903'
    [08:17:55.548] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\729428803'
    [08:17:55.608] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\729428280'
    [08:17:55.653] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\729428037'
    [08:17:55.691] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\729427264'
    [08:17:55.748] [Info] Root: Scanning for asset sources in directory 'C:\Programs\Steam\steamapps\workshop\content\211820\729426797'
    [08:17:55.799] [Info] Root: Detected asset source named 'base' at '..\assets\packed.pak'
    [08:17:55.799] [Info] Root: Detected asset source named 'NPC Fixes' at 'C:\Programs\Steam\steamapps\workshop\content\211820\885526333\contents.pak'
    [08:17:55.799] [Info] Root: Detected asset source named 'Skippable Cinematics' at 'C:\Programs\Steam\steamapps\workshop\content\211820\729428037\contents.pak'
    [08:17:55.799] [Info] Root: Detected asset source named 'AnimeBound' at '..\mods\AnimeBound'
    [08:17:55.799] [Info] Root: Detected asset source named 'Earth's Finest - Crew Improvements' at '..\mods\Crew_Plus'
    [08:17:55.799] [Info] Root: Detected unnamed asset source at '..\mods\FrackinUniverse FPS Boost'
    [08:17:55.799] [Info] Root: Detected asset source named 'Glitch Cat' at '..\mods\Glitch Cat'
    [08:17:55.799] [Info] Root: Detected unnamed asset source at '..\mods\Higher Tier Guard Tenants'
    [08:17:55.799] [Info] Root: Detected unnamed asset source at '..\mods\InvisClothes'
    [08:17:55.799] [Info] Root: Detected unnamed asset source at '..\mods\NPC Patches'
    [08:17:55.799] [Info] Root: Detected asset source named 'Puzzle's Recipes' at '..\mods\Puzzle Recipes'
    [08:17:55.799] [Info] Root: Detected asset source named 'Racial Crafting & Printing' at '..\mods\Racial Crafting & Printing by Tremerion'
    [08:17:55.800] [Info] Root: Detected asset source named 'playerportraits' at '..\mods\artwork.pak'
    [08:17:55.800] [Info] Root: Detected asset source named 'joboffers' at 'C:\Programs\Steam\steamapps\workshop\content\211820\735253889\contents.pak'
    [08:17:55.800] [Info] Root: Detected asset source named 'NonUniform' at '..\mods\nonuniformv2_02'
    [08:17:55.800] [Info] Root: Detected asset source named 'Extended Songbook' at 'C:\Programs\Steam\steamapps\workshop\content\211820\729427264\contents.pak'
    [08:17:55.800] [Info] Root: Detected asset source named 'Collector's dream' at 'C:\Programs\Steam\steamapps\workshop\content\211820\805114817\contents.pak'
    [08:17:55.800] [Info] Root: Detected asset source named 'Outpost Pet Healing Station' at 'C:\Programs\Steam\steamapps\workshop\content\211820\951696176\contents.pak'
    [08:17:55.800] [Info] Root: Detected asset source named 'Mech Random Blueprint Fix' at 'C:\Programs\Steam\steamapps\workshop\content\211820\951697307\contents.pak'
    [08:17:55.800] [Info] Root: Detected asset source named 'Better Shield Drones!' at 'C:\Programs\Steam\steamapps\workshop\content\211820\951717365\contents.pak'
    [08:17:55.800] [Info] Root: Detected asset source named 'Mannequin head' at 'C:\Programs\Steam\steamapps\workshop\content\211820\949437025\contents.pak'
    [08:17:55.800] [Info] Root: Detected asset source named 'perfectbalance' at 'C:\Programs\Steam\steamapps\workshop\content\211820\947718575\contents.pak'
    [08:17:55.800] [Info] Root: Detected asset source named 'Tech Tooltip Return' at 'C:\Programs\Steam\steamapps\workshop\content\211820\945997480\contents.pak'
    [08:17:55.800] [Info] Root: Detected asset source named '100% Boss Uniques Drop Rate' at 'C:\Programs\Steam\steamapps\workshop\content\211820\945393508\contents.pak'
    [08:17:55.801] [Info] Root: Detected asset source named 'Repaired Rage Stims' at 'C:\Programs\Steam\steamapps\workshop\content\211820\945460267\contents.pak'
    [08:17:55.801] [Info] Root: Detected asset source named 'az-mechhelmremover' at 'C:\Programs\Steam\steamapps\workshop\content\211820\942632292\contents.pak'
    [08:17:55.801] [Info] Root: Detected asset source named 'AndroidFluffalo' at 'C:\Programs\Steam\steamapps\workshop\content\211820\737358264\contents.pak'
    [08:17:55.801] [Info] Root: Detected asset source named 'craftablecollars' at 'C:\Programs\Steam\steamapps\workshop\content\211820\734569205\contents.pak'
    [08:17:55.801] [Info] Root: Detected asset source named 'Ground Seeders' at 'C:\Programs\Steam\steamapps\workshop\content\211820\742376260\contents.pak'
    [08:17:55.801] [Info] Root: Detected asset source named 'Armorsmith - Racial Armor & Weapons for Everyone!' at 'C:\Programs\Steam\steamapps\workshop\content\211820\739997317\contents.pak'
    [08:17:55.801] [Info] Root: Detected asset source named 'Lunar Meteor Remover' at 'C:\Programs\Steam\steamapps\workshop\content\211820\762759012\contents.pak'
    [08:17:55.801] [Info] Root: Detected asset source named 'Moon Farm Restorer (Threat level 10 patch)' at 'C:\Programs\Steam\steamapps\workshop\content\211820\760142889\contents.pak'
    [08:17:55.801] [Info] Root: Detected asset source named 'ShareableBed' at 'C:\Programs\Steam\steamapps\workshop\content\211820\938540333\contents.pak'
    [08:17:55.801] [Info] Root: Detected asset source named 'Tiered Guard Tenant Armor Fixes' at 'C:\Programs\Steam\steamapps\workshop\content\211820\936974467\contents.pak'
    [08:17:55.801] [Info] Root: Detected asset source named 'cuter monsters ' at 'C:\Programs\Steam\steamapps\workshop\content\211820\911209828\contents.pak'
    [08:17:55.802] [Info] Root: Detected asset source named 'X Close-Button Fix For Old Mods' at 'C:\Programs\Steam\steamapps\workshop\content\211820\907216757\contents.pak'
    [08:17:55.802] [Info] Root: Detected asset source named 'Better Arcade Machines' at 'C:\Programs\Steam\steamapps\workshop\content\211820\902111753\betterarcades.pak'
    [08:17:55.802] [Info] Root: Detected asset source named 'NpcSpawnerPlus' at 'C:\Programs\Steam\steamapps\workshop\content\211820\895140470\contents.pak'
    [08:17:55.802] [Info] Root: Detected asset source named 'Working Showers' at 'C:\Programs\Steam\steamapps\workshop\content\211820\894901052\workingshower_v1.1.pak'
    [08:17:55.802] [Info] Root: Detected asset source named 'Hat Mask Fixes' at 'C:\Programs\Steam\steamapps\workshop\content\211820\890205989\contents.pak'
    [08:17:55.802] [Info] Root: Detected asset source named 'See Colony Tags' at 'C:\Programs\Steam\steamapps\workshop\content\211820\889774441\contents.pak'
    [08:17:55.802] [Info] Root: Detected asset source named 'HoloRuler' at 'C:\Programs\Steam\steamapps\workshop\content\211820\743604545\contents.pak'
    [08:17:55.802] [Info] Root: Detected asset source named 'HoloRulertemporarypatch' at 'C:\Programs\Steam\steamapps\workshop\content\211820\883901189\contents.pak'
    [08:17:55.802] [Info] Root: Detected asset source named 'learnblueprintsonscan' at 'C:\Programs\Steam\steamapps\workshop\content\211820\879213535\contents.pak'
    [08:17:55.802] [Info] Root: Detected asset source named 'RWGFIX.IHC' at 'C:\Programs\Steam\steamapps\workshop\content\211820\877011167\contents.pak'
    [08:17:55.802] [Info] Root: Detected asset source named 'No Bed Nudity' at 'C:\Programs\Steam\steamapps\workshop\content\211820\867218094\nobednudity.pak'
    [08:17:55.802] [Info] Root: Detected asset source named 'Usable Bathtubs' at 'C:\Programs\Steam\steamapps\workshop\content\211820\862287085\usebathtubs_v1.2.pak'
    [08:17:55.803] [Info] Root: Detected asset source named 'Interactable Apex Pod' at 'C:\Programs\Steam\steamapps\workshop\content\211820\860578021\useapexpod.pak'
    [08:17:55.803] [Info] Root: Detected asset source named 'Augment Extractor' at 'C:\Programs\Steam\steamapps\workshop\content\211820\855668523\contents.pak'
    [08:17:55.803] [Info] Root: Detected asset source named 'Healthy Capture Fixed' at 'C:\Programs\Steam\steamapps\workshop\content\211820\854495770\contents.pak'
    [08:17:55.803] [Info] Root: Detected asset source named 'immortalcritters' at 'C:\Programs\Steam\steamapps\workshop\content\211820\830314107\contents.pak'
    [08:17:55.803] [Info] Root: Detected asset source named 'Alll Starter Clothes' at 'C:\Programs\Steam\steamapps\workshop\content\211820\821419055\contents.pak'
    [08:17:55.803] [Info] Root: Detected asset source named 'meleeaim' at 'C:\Programs\Steam\steamapps\workshop\content\211820\817468961\contents.pak'
    [08:17:55.803] [Info] Root: Detected asset source named 'Metroid Based Scan Colors' at 'C:\Programs\Steam\steamapps\workshop\content\211820\791323957\contents.pak'
    [08:17:55.803] [Info] Root: Detected asset source named 'Weapon Stats' at 'C:\Programs\Steam\steamapps\workshop\content\211820\729726478\contents.pak'
    [08:17:55.803] [Info] Root: Detected asset source named 'WeaponAssembly' at 'C:\Programs\Steam\steamapps\workshop\content\211820\783742589\contents.pak'
    [08:17:55.803] [Info] Root: Detected asset source named 'Protector Icons' at 'C:\Programs\Steam\steamapps\workshop\content\211820\782825930\contents.pak'
    [08:17:55.803] [Info] Root: Detected asset source named 'environmentSafety' at 'C:\Programs\Steam\steamapps\workshop\content\211820\782262701\contents.pak'
    [08:17:55.803] [Info] Root: Detected asset source named 'Easier Bows' at 'C:\Programs\Steam\steamapps\workshop\content\211820\776078387\contents.pak'
    [08:17:55.804] [Info] Root: Detected asset source named 'blueprintcrafting' at 'C:\Programs\Steam\steamapps\workshop\content\211820\773691656\contents.pak'
    [08:17:55.804] [Info] Root: Detected asset source named 'Extended GUI' at 'C:\Programs\Steam\steamapps\workshop\content\211820\729426797\contents.pak'
    [08:17:55.804] [Info] Root: Detected asset source named 'More Tillable Blocks: Dirts and Sands' at 'C:\Programs\Steam\steamapps\workshop\content\211820\759587111\contents.pak'
    [08:17:55.804] [Info] Root: Detected asset source named 'Craftable Seeds' at 'C:\Programs\Steam\steamapps\workshop\content\211820\731358672\contents.pak'
    [08:17:55.804] [Info] Root: Detected asset source named 'GardenBot2' at 'C:\Programs\Steam\steamapps\workshop\content\211820\729428280\contents.pak'
    [08:17:55.804] [Info] Root: Detected asset source named 'Medieval Fridge & Mini Fridge' at 'C:\Programs\Steam\steamapps\workshop\content\211820\750425376\contents.pak'
    [08:17:55.804] [Info] Root: Detected asset source named 'Enhanced Storage' at 'C:\Programs\Steam\steamapps\workshop\content\211820\731220462\contents.pak'
    [08:17:55.804] [Info] Root: Detected asset source named 'Enhanced Storage Lite' at 'C:\Programs\Steam\steamapps\workshop\content\211820\757272346\contents.pak'
    [08:17:55.804] [Info] Root: Detected asset source named 'The Protectorate Flower: Farmable and Potted' at 'C:\Programs\Steam\steamapps\workshop\content\211820\756687845\contents.pak'
    [08:17:55.804] [Info] Root: Detected asset source named 'Named Saplings' at 'C:\Programs\Steam\steamapps\workshop\content\211820\753188786\contents.pak'
    [08:17:55.804] [Info] Root: Detected asset source named 'Unbreakable Tech Console' at 'C:\Programs\Steam\steamapps\workshop\content\211820\740675828\contents.pak'
    [08:17:55.804] [Info] Root: Detected asset source named 'EverLana' at 'C:\Programs\Steam\steamapps\workshop\content\211820\749386227\contents.pak'
    [08:17:55.805] [Info] Root: Detected asset source named 'EverPenguin' at 'C:\Programs\Steam\steamapps\workshop\content\211820\749382770\contents.pak'
    [08:17:55.805] [Info] Root: Detected asset source named 'Reclaimable Turrets' at 'C:\Programs\Steam\steamapps\workshop\content\211820\749138636\contents.pak'
    [08:17:55.805] [Info] Root: Detected asset source named 'One Handed Hoe' at 'C:\Programs\Steam\steamapps\workshop\content\211820\747814787\contents.pak'
    [08:17:55.805] [Info] Root: Detected asset source named 'One Handed Bug Net' at 'C:\Programs\Steam\steamapps\workshop\content\211820\747805059\contents.pak'
    [08:17:55.805] [Info] Root: Detected asset source named 'Bug RNG Removal' at 'C:\Programs\Steam\steamapps\workshop\content\211820\747774241\contents.pak'
    [08:17:55.805] [Info] Root: Detected asset source named 'EZsNoPixelLossForCasual' at 'C:\Programs\Steam\steamapps\workshop\content\211820\747281963\contents.pak'
    [08:17:55.805] [Info] Root: Detected asset source named 'Fossil Detector' at 'C:\Programs\Steam\steamapps\workshop\content\211820\742786243\contents.pak'
    [08:17:55.805] [Info] Root: Detected asset source named 'moveandwater' at 'C:\Programs\Steam\steamapps\workshop\content\211820\742474661\contents.pak'
    [08:17:55.805] [Info] Root: Detected asset source named 'Crew race/gender display' at 'C:\Programs\Steam\steamapps\workshop\content\211820\740750449\contents.pak'
    [08:17:55.805] [Info] Root: Detected asset source named 'Colony Deed Wiring' at 'C:\Programs\Steam\steamapps\workshop\content\211820\740385324\contents.pak'
    [08:17:55.805] [Info] Root: Detected asset source named 'SensibleFossils' at 'C:\Programs\Steam\steamapps\workshop\content\211820\740177390\contents.pak'
    [08:17:55.805] [Info] Root: Detected asset source named 'Pay Up - Valuables' at 'C:\Programs\Steam\steamapps\workshop\content\211820\739703276\contents.pak'
    [08:17:55.806] [Info] Root: Detected asset source named 'LiquidPump' at 'C:\Programs\Steam\steamapps\workshop\content\211820\738272039\contents.pak'
    [08:17:55.806] [Info] Root: Detected asset source named 'Missing Music Addition [Soundtrack]' at 'C:\Programs\Steam\steamapps\workshop\content\211820\737195784\contents.pak'
    [08:17:55.806] [Info] Root: Detected asset source named 'Enhanced Chat Readability' at 'C:\Programs\Steam\steamapps\workshop\content\211820\737027388\contents.pak'
    [08:17:55.806] [Info] Root: Detected asset source named 'No Shadows (RAM's version)' at 'C:\Programs\Steam\steamapps\workshop\content\211820\736593129\contents.pak'
    [08:17:55.806] [Info] Root: Detected asset source named 'glowing_chests2_half' at 'C:\Programs\Steam\steamapps\workshop\content\211820\736027516\contents.pak'
    [08:17:55.806] [Info] Root: Detected asset source named 'Mini Village' at 'C:\Programs\Steam\steamapps\workshop\content\211820\735909966\contents.pak'
    [08:17:55.806] [Info] Root: Detected asset source named 'Alternate Death Effect' at 'C:\Programs\Steam\steamapps\workshop\content\211820\734737440\contents.pak'
    [08:17:55.806] [Info] Root: Detected asset source named 'Craftable Components' at 'C:\Programs\Steam\steamapps\workshop\content\211820\734706471\contents.pak'
    [08:17:55.806] [Info] Root: Detected asset source named 'Protectorate Repowered' at 'C:\Programs\Steam\steamapps\workshop\content\211820\734607596\contents.pak'
    [08:17:55.806] [Info] Root: Detected asset source named 'Augment Slot for Back Items' at 'C:\Programs\Steam\steamapps\workshop\content\211820\734581251\contents.pak'
    [08:17:55.806] [Info] Root: Detected asset source named 'Better Dash (no more double tap)' at 'C:\Programs\Steam\steamapps\workshop\content\211820\734473807\contents.pak'
    [08:17:55.806] [Info] Root: Detected asset source named 'Augment Slots for Armor' at 'C:\Programs\Steam\steamapps\workshop\content\211820\733403716\contents.pak'
    [08:17:55.807] [Info] Root: Detected asset source named 'EZ Archeology' at 'C:\Programs\Steam\steamapps\workshop\content\211820\732908496\contents.pak'
    [08:17:55.807] [Info] Root: Detected asset source named 'KK Protectorate Furniture' at 'C:\Programs\Steam\steamapps\workshop\content\211820\732742952\contents.pak'
    [08:17:55.807] [Info] Root: Detected asset source named 'Max Item Stack Boost' at 'C:\Programs\Steam\steamapps\workshop\content\211820\732341098\contents.pak'
    [08:17:55.807] [Info] Root: Detected asset source named 'Improved Food Descriptions' at 'C:\Programs\Steam\steamapps\workshop\content\211820\731354142\contents.pak'
    [08:17:55.807] [Info] Root: Detected asset source named 'Improved Food Descriptions [Addon]' at 'C:\Programs\Steam\steamapps\workshop\content\211820\731818324\contents.pak'
    [08:17:55.807] [Info] Root: Detected asset source named 'Unbreaking Fossil Brushes' at 'C:\Programs\Steam\steamapps\workshop\content\211820\731648067\contents.pak'
    [08:17:55.807] [Info] Root: Detected asset source named 'Craftable Bottled Healing Water' at 'C:\Programs\Steam\steamapps\workshop\content\211820\731538310\contents.pak'
    [08:17:55.807] [Info] Root: Detected asset source named 'x10 Basic Drop Rates' at 'C:\Programs\Steam\steamapps\workshop\content\211820\731199031\contents.pak'
    [08:17:55.807] [Info] Root: Detected asset source named 'CompactCrops' at 'C:\Programs\Steam\steamapps\workshop\content\211820\731044896\contents.pak'
    [08:17:55.807] [Info] Root: Detected asset source named 'Metal Gear Solid Alert Sound' at 'C:\Programs\Steam\steamapps\workshop\content\211820\730918134\contents.pak'
    [08:17:55.807] [Info] Root: Detected asset source named 'EverFrogg' at 'C:\Programs\Steam\steamapps\workshop\content\211820\730852387\contents.pak'
    [08:17:55.807] [Info] Root: Detected asset source named 'Killable Erchius Ghost' at 'C:\Programs\Steam\steamapps\workshop\content\211820\730801590\contents.pak'
    [08:17:55.808] [Info] Root: Detected asset source named 'One-Handed Torch' at 'C:\Programs\Steam\steamapps\workshop\content\211820\730587191\contents.pak'
    [08:17:55.808] [Info] Root: Detected asset source named 'One-Handed Instruments' at 'C:\Programs\Steam\steamapps\workshop\content\211820\730460799\contents.pak'
    [08:17:55.808] [Info] Root: Detected asset source named 'PerennialCrops' at 'C:\Programs\Steam\steamapps\workshop\content\211820\730378641\contents.pak'
    [08:17:55.808] [Info] Root: Detected asset source named 'DoubleSaplings' at 'C:\Programs\Steam\steamapps\workshop\content\211820\730288317\contents.pak'
    [08:17:55.808] [Info] Root: Detected asset source named 'Reduced Fall Damage' at 'C:\Programs\Steam\steamapps\workshop\content\211820\730266156\contents.pak'
    [08:17:55.808] [Info] Root: Detected asset source named 'Universal Uncrafter v1.46' at 'C:\Programs\Steam\steamapps\workshop\content\211820\729532886\contents.pak'
    [08:17:55.808] [Info] Root: Detected asset source named 'GPR Mapper v1.45' at 'C:\Programs\Steam\steamapps\workshop\content\211820\729512636\contents.pak'
    [08:17:55.808] [Info] Root: Detected asset source named 'kao_shipbg' at 'C:\Programs\Steam\steamapps\workshop\content\211820\729479587\contents.pak'
    [08:17:55.808] [Info] Root: Detected asset source named 'kao_challenge' at 'C:\Programs\Steam\steamapps\workshop\content\211820\729432903\contents.pak'
    [08:17:55.808] [Info] Root: Detected asset source named 'More Tillables Patch for Gardenbot 2: Reboot Edition' at 'C:\Programs\Steam\steamapps\workshop\content\211820\763222616\contents.pak'
    [08:17:55.808] [Info] Root: Detected asset source named 'skizots_dozers' at 'C:\Programs\Steam\steamapps\workshop\content\211820\729428803\contents.pak'
    [08:17:55.809] [Info] Root: Detected asset source named 'Magic Labels' at 'C:\Programs\Steam\steamapps\workshop\content\211820\751868467\contents.pak'
    [08:17:55.809] [Info] Root: Detected asset source named 'Weapon Fusion Station' at 'C:\Programs\Steam\steamapps\workshop\content\211820\741491949\contents.pak'
    [08:17:55.809] [Info] Root: Detected asset source named 'Weapon Reinforcer' at 'C:\Programs\Steam\steamapps\workshop\content\211820\744492975\contents.pak'
    [08:17:55.809] [Info] Root: Detected asset source named 'Unbreakable Teleporters' at 'C:\Programs\Steam\steamapps\workshop\content\211820\741194961\contents.pak'
    [08:17:55.809] [Info] Root: Detected asset source named 'Illuminated Ores' at 'C:\Programs\Steam\steamapps\workshop\content\211820\729824320\contents.pak'
    [08:17:55.809] [Info] Root: Detected unnamed asset source at '..\assets\user'
    [08:17:55.809] [Info] Loading assets from: '..\assets\packed.pak'
    [08:17:56.488] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\885526333\contents.pak'
    [08:17:56.489] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\729428037\contents.pak'
    [08:17:56.490] [Info] Loading assets from: '..\mods\AnimeBound'
    [08:17:56.608] [Info] Loading assets from: '..\mods\Crew_Plus'
    [08:17:56.610] [Info] Loading assets from: '..\mods\FrackinUniverse FPS Boost'
    [08:17:56.674] [Info] Loading assets from: '..\mods\Glitch Cat'
    [08:17:56.675] [Info] Loading assets from: '..\mods\Higher Tier Guard Tenants'
    [08:17:56.681] [Info] Loading assets from: '..\mods\InvisClothes'
    [08:17:56.683] [Info] Loading assets from: '..\mods\NPC Patches'
    [08:17:56.685] [Info] Loading assets from: '..\mods\Puzzle Recipes'
    [08:17:56.689] [Info] Loading assets from: '..\mods\Racial Crafting & Printing by Tremerion'
    [08:17:56.802] [Info] Loading assets from: '..\mods\artwork.pak'
    [08:17:56.804] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\735253889\contents.pak'
    [08:17:56.804] [Info] Loading assets from: '..\mods\nonuniformv2_02'
    [08:17:56.806] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\729427264\contents.pak'
    [08:17:56.807] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\805114817\contents.pak'
    [08:17:56.807] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\951696176\contents.pak'
    [08:17:56.807] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\951697307\contents.pak'
    [08:17:56.807] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\951717365\contents.pak'
    [08:17:56.808] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\949437025\contents.pak'
    [08:17:56.808] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\947718575\contents.pak'
    [08:17:56.808] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\945997480\contents.pak'
    [08:17:56.809] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\945393508\contents.pak'
    [08:17:56.809] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\945460267\contents.pak'
    [08:17:56.809] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\942632292\contents.pak'
    [08:17:56.809] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\737358264\contents.pak'
    [08:17:56.810] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\734569205\contents.pak'
    [08:17:56.810] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\742376260\contents.pak'
    [08:17:56.814] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\739997317\contents.pak'
    [08:17:56.815] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\762759012\contents.pak'
    [08:17:56.815] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\760142889\contents.pak'
    [08:17:56.815] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\938540333\contents.pak'
    [08:17:56.816] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\936974467\contents.pak'
    [08:17:56.817] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\911209828\contents.pak'
    [08:17:56.817] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\907216757\contents.pak'
    [08:17:56.818] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\902111753\betterarcades.pak'
    [08:17:56.818] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\895140470\contents.pak'
    [08:17:56.819] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\894901052\workingshower_v1.1.pak'
    [08:17:56.820] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\890205989\contents.pak'
    [08:17:56.820] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\889774441\contents.pak'
    [08:17:56.862] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\743604545\contents.pak'
    [08:17:56.863] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\883901189\contents.pak'
    [08:17:56.863] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\879213535\contents.pak'
    [08:17:56.863] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\877011167\contents.pak'
    [08:17:56.864] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\867218094\nobednudity.pak'
    [08:17:56.864] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\862287085\usebathtubs_v1.2.pak'
    [08:17:56.864] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\860578021\useapexpod.pak'
    [08:17:56.865] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\855668523\contents.pak'
    [08:17:56.865] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\854495770\contents.pak'
    [08:17:56.865] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\830314107\contents.pak'
    [08:17:56.868] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\821419055\contents.pak'
    [08:17:56.868] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\817468961\contents.pak'
    [08:17:56.869] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\791323957\contents.pak'
    [08:17:56.869] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\729726478\contents.pak'
    [08:17:56.870] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\783742589\contents.pak'
    [08:17:56.870] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\782825930\contents.pak'
    [08:17:56.872] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\782262701\contents.pak'
    [08:17:56.873] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\776078387\contents.pak'
    [08:17:56.873] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\773691656\contents.pak'
    [08:17:56.875] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\729426797\contents.pak'
    [08:17:56.876] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\759587111\contents.pak'
    [08:17:56.876] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\731358672\contents.pak'
    [08:17:56.878] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\729428280\contents.pak'
    [08:17:56.880] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\750425376\contents.pak'
    [08:17:56.881] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\731220462\contents.pak'
    [08:17:56.900] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\757272346\contents.pak'
    [08:17:56.906] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\756687845\contents.pak'
    [08:17:56.907] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\753188786\contents.pak'
    [08:17:56.907] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\740675828\contents.pak'
    [08:17:56.907] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\749386227\contents.pak'
    [08:17:56.908] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\749382770\contents.pak'
    [08:17:56.908] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\749138636\contents.pak'
    [08:17:56.908] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\747814787\contents.pak'
    [08:17:56.908] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\747805059\contents.pak'
    [08:17:56.909] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\747774241\contents.pak'
    [08:17:56.909] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\747281963\contents.pak'
    [08:17:56.909] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\742786243\contents.pak'
    [08:17:56.909] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\742474661\contents.pak'
    [08:17:56.910] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\740750449\contents.pak'
    [08:17:56.910] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\740385324\contents.pak'
    [08:17:56.910] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\740177390\contents.pak'
    [08:17:56.911] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\739703276\contents.pak'
    [08:17:56.911] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\738272039\contents.pak'
    [08:17:56.912] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\737195784\contents.pak'
    [08:17:56.912] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\737027388\contents.pak'
    [08:17:56.913] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\736593129\contents.pak'
    [08:17:56.913] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\736027516\contents.pak'
    [08:17:56.914] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\735909966\contents.pak'
    [08:17:56.916] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\734737440\contents.pak'
    [08:17:56.917] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\734706471\contents.pak'
    [08:17:56.917] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\734607596\contents.pak'
    [08:17:56.920] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\734581251\contents.pak'
    [08:17:56.922] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\734473807\contents.pak'
    [08:17:56.922] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\733403716\contents.pak'
    [08:17:56.945] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\732908496\contents.pak'
    [08:17:56.945] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\732742952\contents.pak'
    [08:17:56.946] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\732341098\contents.pak'
    [08:17:56.946] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\731354142\contents.pak'
    [08:17:56.947] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\731818324\contents.pak'
    [08:17:56.950] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\731648067\contents.pak'
    [08:17:56.951] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\731538310\contents.pak'
    [08:17:56.951] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\731199031\contents.pak'
    [08:17:56.951] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\731044896\contents.pak'
    [08:17:56.952] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\730918134\contents.pak'
    [08:17:56.952] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\730852387\contents.pak'
    [08:17:56.953] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\730801590\contents.pak'
    [08:17:56.953] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\730587191\contents.pak'
    [08:17:56.953] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\730460799\contents.pak'
    [08:17:56.954] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\730378641\contents.pak'
    [08:17:56.955] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\730288317\contents.pak'
    [08:17:56.957] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\730266156\contents.pak'
    [08:17:56.957] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\729532886\contents.pak'
    [08:17:56.957] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\729512636\contents.pak'
    [08:17:56.958] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\729479587\contents.pak'
    [08:17:56.958] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\729432903\contents.pak'
    [08:17:56.959] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\763222616\contents.pak'
    [08:17:56.959] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\729428803\contents.pak'
    [08:17:56.960] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\751868467\contents.pak'
    [08:17:56.966] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\741491949\contents.pak'
    [08:17:56.967] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\744492975\contents.pak'
    [08:17:56.967] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\741194961\contents.pak'
    [08:17:56.968] [Info] Loading assets from: 'C:\Programs\Steam\steamapps\workshop\content\211820\729824320\contents.pak'
    [08:17:56.969] [Info] Loading assets from: '..\assets\user'
    [08:17:58.534] [Info] Assets digest is e92d1fd9d78d9f9e1c97af27493e1feb66b4b17cbc5c25659b399a919050c6c1
    [08:17:58.534] [Info] Root: Loaded Assets in 8.92743 seconds
    [08:17:58.653] [Info] Root: Loaded ImageMetadataDatabase in 3.12359e-06 seconds
    [08:17:58.748] [Info] Root: Loaded NameGenerator in 0.17543 seconds
    [08:18:01.693] [Info] Root: Loaded PlantDatabase in 2.94445 seconds
    [08:18:05.182] [Info] Root: Loaded ProjectileDatabase in 3.48842 seconds
    [08:18:09.484] [Info] Root: Loaded MonsterDatabase in 4.30198 seconds
    [08:18:11.887] [Info] Root: Loaded NpcDatabase in 2.40281 seconds
    [08:18:11.981] [Info] Root: Loaded StagehandDatabase in 0.094332 seconds
    [08:18:12.154] [Info] Root: Loaded VehicleDatabase in 0.172756 seconds
    [08:18:12.247] [Info] Root: Loaded PlayerFactory in 0.09334 seconds
    [08:18:18.505] [Info] Root: Loaded ObjectDatabase in 19.9317 seconds
    [08:18:18.526] [Info] Root: Loaded VersioningDatabase in 0.0211784 seconds
    [08:18:18.526] [Info] Root: Loaded EntityFactory in 6.27856 seconds
    [08:18:18.887] [Info] Root: Loaded ParticleDatabase in 0.33245 seconds
    [08:18:21.272] [Info] Root: Loaded MaterialDatabase in 2.74551 seconds
    [08:18:21.285] [Info] Root: Loaded TerrainDatabase in 0.0130147 seconds
    [08:18:22.095] [Info] Root: Loaded BiomeDatabase in 0.809869 seconds
    [08:18:22.113] [Info] Root: Loaded LiquidsDatabase in 0.0182378 seconds
    [08:18:22.172] [Info] Root: Loaded StatusEffectDatabase in 0.0591465 seconds
    [08:18:24.309] [Info] Root: Loaded DamageDatabase in 2.13627 seconds
    [08:18:24.499] [Info] Root: Loaded EffectSourceDatabase in 0.190513 seconds
    [08:18:24.604] [Info] Root: Loaded FunctionDatabase in 0.104228 seconds
    [08:18:25.015] [Info] Root: Loaded TreasureDatabase in 0.410919 seconds
    [08:18:28.687] [Info] Root: Loaded DungeonDefinitions in 3.67209 seconds
    [08:18:28.774] [Info] Root: Loaded TilesetDatabase in 0.0865346 seconds
    [08:18:28.814] [Info] Root: Loaded StatisticsDatabase in 0.0395103 seconds
    [08:18:28.846] [Info] Root: Loaded EmoteProcessor in 0.0319784 seconds
    [08:18:29.011] [Info] Root: Loaded SpeciesDatabase in 0.165538 seconds
    [08:18:29.315] [Info] Root: Loaded QuestTemplateDatabase in 0.304393 seconds
    [08:18:29.355] [Info] Root: Loaded AiDatabase in 0.0391359 seconds
    [08:18:29.376] [Info] Root: Loaded TechDatabase in 0.021526 seconds
    [08:18:29.430] [Info] Root: Loaded CodexDatabase in 0.052798 seconds
    [08:18:30.703] [Info] Root: Loaded BehaviorDatabase in 1.27393 seconds
    [08:18:30.743] [Info] Root: Loaded DanceDatabase in 0.0392153 seconds
    [08:18:30.773] [Info] Root: Loaded SpawnTypeDatabase in 0.0299981 seconds
    [08:18:30.874] [Info] Root: Loaded RadioMessageDatabase in 0.100804 seconds
    [08:18:46.076] [Info] Root: Loaded ItemDatabase in 27.5714 seconds
    [08:18:46.337] [Info] Root: Loaded CollectionDatabase in 15.4632 seconds
    [08:18:49.838] [Info] detected supported OpenGL texture size 8192, using atlasNumCells 256
    [08:18:56.492] [Info] UniverseServer: Acquiring universe lock file
    [08:18:56.580] [Info] UniverseServer: Loading settings
    [08:18:56.617] [Info] UniverseServer: Starting UniverseServer with UUID: 7d76f8c0bd5b29f9d561c0f756e1490b
    [08:18:56.756] [Info] UniverseServer: Logged in player 'Swiftblade' locally
    [08:18:56.769] [Info] UniverseServer: Logged in account '<anonymous>' as player 'Swiftblade' from address local
    [08:18:56.781] [Info] UniverseServer: Loading system world (418466644, 718566457, -252276695) from disk storage
    [08:18:56.790] [Info] UniverseClient: Joined server as client 1
    [08:18:56.980] [Info] UniverseServer: Reviving player at ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [08:18:56.980] [Info] UniverseServer: Client 'Swiftblade' <1> (local) connected
    [08:18:56.982] [Info] UniverseServer: Loading client ship world ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [08:18:57.311] [Info] Protected dungeonIds for world set to (65524)
    [08:18:58.886] [Info] detected supported OpenGL texture size 8192, using atlasNumCells 64
    [08:18:58.914] [Info] detected supported OpenGL texture size 8192, using atlasNumCells 128
    [08:18:59.027] [Info] detected supported OpenGL texture size 8192, using atlasNumCells 256
    [08:18:59.027] [Info] detected supported OpenGL texture size 8192, using atlasNumCells 256
    [08:18:59.028] [Info] Setting steam rich presence connection as steam id 76561198088833787
    [08:18:59.122] [Error] Cannot set Steam achievement kill10poptops
    [08:18:59.122] [Error] Cannot set Steam achievement dismisscrewmember
    [08:19:00.269] [Info] UniverseServer: Warping player 1 to ClientShipWorld:15b9411c104bce52a3ee607a5609cb56=1024.1025
    [08:24:30.129] [Info] Flying ship for player 1 to 418466644:718566457:-252276695
    [08:24:50.523] [Info] UniverseServer: Arriving ship for player 1 at 418466644:718566457:-252276695
    [08:27:48.715] [Info] UniverseServer: Loading persistent unique instance world spacestation_medical
    [08:27:48.767] [Info] Protected dungeonIds for world set to (0, 65524)
    [08:27:48.936] [Info] UniverseServer: Warping player 1 to InstanceWorld:spacestation_medical:0eb532084812bc9649266316c6b4b48f:1
    [08:27:48.959] [Info] UniverseServer: Stopping idle world ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [08:27:48.975] [Info] Client received world stop packet, leaving: Removed
    [08:30:28.181] [Info] UniverseServer: Loading client ship world ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [08:30:28.730] [Info] Protected dungeonIds for world set to (65524)
    [08:30:31.559] [Info] UniverseServer: Warping player 1 to ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [08:30:31.570] [Info] Client received world stop packet, leaving: Removed
    [08:30:31.710] [Info] UniverseServer: Stopping idle world InstanceWorld:spacestation_medical:0eb532084812bc9649266316c6b4b48f:1
    [08:30:53.199] [Info] UniverseServer: Creating temporary instance world 'InstanceWorld:lunarbase:15b9411c104bce52a3ee607a5609cb56:-' with expiry time 0
    [08:30:53.366] [Info] Protected dungeonIds for world set to (65524)
    [08:30:53.366] [Info] Placing dungeon lunarbase
    [08:30:53.366] [Info] Forcing generation of dungeon lunarbase
    [08:30:53.489] [Info] Placing dungeon at (0, 1000)
    [08:31:05.786] [Warn] Failed to place dungeon object: lunarbasecrate direction: 1 position: (551, 918)
    [08:31:05.821] [Warn] Failed to place dungeon object: lunarbasecrate direction: 1 position: (551, 921)
    [08:31:05.902] [Warn] Failed to place dungeon object: prisonfloodlight direction: 0 position: (402, 933)
    [08:31:05.941] [Warn] Failed to place dungeon object: miningdoor direction: 0 position: (539, 948)
    [08:31:09.068] [Warn] Dungeon wire endpoint not found. (344, 705)
    [08:31:09.068] [Warn] Dungeon wire endpoint not found. (369, 705)
    [08:31:09.072] [Warn] Dungeon wire endpoint not found. (800, 907)
    [08:31:09.072] [Warn] Dungeon wire endpoint not found. (809, 907)
    [08:31:09.074] [Warn] Dungeon wire endpoint not found. (545, 992)
    [08:31:09.075] [Warn] Dungeon wire endpoint not found. (552, 992)
    [08:31:09.075] [Warn] Dungeon wire endpoint not found. (559, 992)
    [08:31:09.080] [Warn] Dungeon wire endpoint not found. (528, 830)
    [08:31:09.080] [Warn] Dungeon wire endpoint not found. (531, 830)
    [08:31:09.086] [Warn] Dungeon wire endpoint not found. (354, 654)
    [08:31:09.086] [Warn] Dungeon wires did not make a circuit.
    [08:31:09.086] [Warn] Dungeon wire endpoint not found. (355, 654)
    [08:31:09.086] [Warn] Dungeon wires did not make a circuit.
    [08:31:09.086] [Warn] Dungeon wire endpoint not found. (352, 655)
    [08:31:09.086] [Warn] Dungeon wires did not make a circuit.
    [08:31:11.814] [Info] Protected dungeonIds for world set to (0, 65524)
    [08:31:15.130] [Info] UniverseServer: Warping player 1 to InstanceWorld:lunarbase:15b9411c104bce52a3ee607a5609cb56:-
    [08:31:17.632] [Info] UniverseServer: Stopping idle world ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [08:31:17.678] [Info] Client received world stop packet, leaving: Removed
    [08:32:59.150] [Info] Chat: <SAIL> All life readings emanate from a great depth below the surface. The readings are... Difficult to define. Congratulations in advance for your courage.
    [08:33:13.104] [Info] Chat: <SAIL> It appears lockdown has been instigated. You must locate a breaker to restore full power. Please proceed with caution in conditions of low light.
    [08:33:38.119] [Info] Chat: <SAIL> I detect both Erchius chemical signatures and human DNA in these entities. High likelihood of behavioural volatility predicted.
    [08:33:56.747] [Info] Skipped event recording for nonexistent entity 1924
    [08:33:59.132] [Info] Skipped event recording for nonexistent entity 1922
    [08:33:59.132] [Info] Skipped event recording for nonexistent entity 1922
    [08:34:23.259] [Info] Skipped event recording for nonexistent entity 2774
    [08:35:35.217] [Info] Skipped event recording for nonexistent entity 3908
    [08:35:38.324] [Info] Skipped event recording for nonexistent entity 3904
    [08:36:08.197] [Info] Skipped event recording for nonexistent entity 4667
    [08:36:08.197] [Info] Skipped event recording for nonexistent entity 4667
    [08:36:12.649] [Info] Skipped event recording for nonexistent entity 4670
    [08:36:35.038] [Info] Skipped event recording for nonexistent entity 4671
    [08:37:24.451] [Info] Skipped event recording for nonexistent entity 5064
    [08:37:24.451] [Info] Skipped event recording for nonexistent entity 5064
    [08:37:36.232] [Info] Skipped event recording for nonexistent entity 4088
    [08:39:23.899] [Info] Skipped event recording for nonexistent entity 7516
    [08:39:23.899] [Info] Skipped event recording for nonexistent entity 7516
    [08:40:14.453] [Info] Chat: <SAIL> Erchius readings have reached 94 rad. You are in peril. Your Peril level is currently 14,607 morts.
    [08:40:25.414] [Info] Chat: <Esther Bright> Sorry about the AI, dear.
    [08:40:34.225] [Info] Chat: <Esther Bright> Look at them; prolonged contact with the Erchius crystals seems to have denatured their very being! The poor creatures have lost themselves completely.
    [08:41:58.683] [Info] Chat: <SAIL> Erchius readings have reached 101 rad. Your current Peril level is 18,472 morts...
    [08:42:08.652] [Info] Chat: <Esther Bright> Hush! You're not helping.
    [08:42:19.216] [Info] Chat: <SAIL> Conventional weapons have an estimated 0% chance of damaging the Erchius crystal. You are invited to devise another means of attack.
    [08:43:06.972] [Info] Chat: <Esther Bright> Well done!
    [08:43:11.537] [Info] Chat: <SAIL> There is enough Erchius here to fully repair the ship.
    [08:43:58.412] [Info] UniverseServer: Creating temporary instance world 'InstanceWorld:outpost:-:-' with expiry time 0
    [08:43:58.623] [Info] Protected dungeonIds for world set to (65524)
    [08:43:58.624] [Info] Placing dungeon outpost
    [08:43:58.624] [Info] Forcing generation of dungeon outpost
    [08:43:58.645] [Info] Placing dungeon at (0, 750)
    [08:44:11.828] [Info] Protected dungeonIds for world set to (0, 65524)
    [08:44:14.508] [Info] Forcing generation of dungeon outpost_ursaminer
    [08:44:14.508] [Info] Placing dungeon at (406, 651)
    [08:44:14.521] [Info] Forcing generation of dungeon outpost_terramart
    [08:44:14.521] [Info] Placing dungeon at (332, 621)
    [08:44:14.543] [Info] Forcing generation of dungeon outpost_frogfurnishing
    [08:44:14.543] [Info] Placing dungeon at (332, 655)
    [08:44:14.606] [Info] Forcing generation of dungeon outpost_2stopshop
    [08:44:14.606] [Info] Placing dungeon at (427, 618)
    [08:44:14.643] [Info] Forcing generation of dungeon outpost_containercraftingstation2
    [08:44:14.643] [Info] Placing dungeon at (401, 637)
    [08:44:14.665] [Warn] Failed to place dungeon object: enhancedstoragesign direction: 1 position: (415, 632)
    [08:44:14.669] [Warn] Failed to place dungeon object: outpostceilinglight direction: 1 position: (422, 633)
    [08:44:14.669] [Warn] Failed to place dungeon object: outpostlamp direction: 1 position: (426, 633)
    [08:44:14.675] [Info] Forcing generation of dungeon outpost_nuru
    [08:44:14.675] [Info] Placing dungeon at (838, 608)
    [08:44:14.876] [Info] Forcing generation of dungeon outpost_penguinbay
    [08:44:14.876] [Info] Placing dungeon at (452, 627)
    [08:44:14.942] [Warn] Failed to place dungeon object: outpostkeypad direction: 1 position: (461, 611)
    [08:44:14.961] [Info] Forcing generation of dungeon outpost_signstore
    [08:44:14.961] [Info] Placing dungeon at (308, 640)
    [08:44:14.973] [Info] Forcing generation of dungeon outpost_techscientist1
    [08:44:14.973] [Info] Placing dungeon at (355, 636)
    [08:44:14.994] [Warn] Failed to place dungeon object: drip1 direction: 1 position: (372, 634)
    [08:44:15.004] [Info] Forcing generation of dungeon outpost_techscientist2
    [08:44:15.004] [Info] Placing dungeon at (355, 636)
    [08:44:15.022] [Warn] Failed to place dungeon object: drip1 direction: 1 position: (372, 634)
    [08:44:15.203] [Info] UniverseServer: Warping player 1 to InstanceWorld:outpost:-:-=outpost
    [08:44:15.217] [Info] Client received world stop packet, leaving: Removed
    [08:44:17.330] [Info] UniverseServer: Stopping idle world InstanceWorld:lunarbase:15b9411c104bce52a3ee607a5609cb56:-
    [08:44:19.600] [Info] UniverseServer: Expiring temporary world InstanceWorld:lunarbase:15b9411c104bce52a3ee607a5609cb56:-
    [08:44:24.709] [Info] UniverseClient: Client disconnecting...
    [08:44:24.727] [Info] Client received world stop packet, leaving: Removed
    [08:44:24.772] [Info] UniverseServer: Client 'Swiftblade' <1> (local) disconnected for reason:
    [08:44:24.773] [Info] UniverseServer: Stopping idle world InstanceWorld:outpost:-:-
    [08:44:27.029] [Info] UniverseServer: Expiring temporary world InstanceWorld:outpost:-:-
    [08:44:27.226] [Info] UniverseServer: Stopping UniverseServer
    [08:44:27.387] [Info] Clearing steam rich presence connection
    [08:44:36.037] [Info] Root: Writing runtime configuration to '..\storage\starbound.config'
    [18:26:49.292] [Info] Root: Writing runtime configuration to '..\storage\starbound.config'
    [19:57:03.457] [Info] Root: Writing runtime configuration to '..\storage\starbound.config'
    [20:45:50.092] [Info] Root: Writing runtime configuration to '..\storage\starbound.config'
    [20:45:56.026] [Info] UniverseServer: Acquiring universe lock file
    [20:45:56.128] [Info] UniverseServer: Loading settings
    [20:45:56.158] [Info] UniverseServer: Starting UniverseServer with UUID: 7d76f8c0bd5b29f9d561c0f756e1490b
    [20:45:56.188] [Info] UniverseServer: Logged in player 'Swiftblade' locally
    [20:45:56.188] [Info] UniverseServer: Logged in account '<anonymous>' as player 'Swiftblade' from address local
    [20:45:56.302] [Info] UniverseServer: Loading system world (418466644, 718566457, -252276695) from disk storage
    [20:45:56.344] [Info] UniverseClient: Joined server as client 1
    [20:45:56.468] [Info] UniverseServer: Player revive position is expired, spawning back at own ship
    [20:45:56.468] [Info] UniverseServer: Client 'Swiftblade' <1> (local) connected
    [20:45:56.470] [Info] UniverseServer: Loading client ship world ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [20:45:56.935] [Info] Protected dungeonIds for world set to (65524)
    [20:45:58.929] [Info] detected supported OpenGL texture size 8192, using atlasNumCells 64
    [20:45:58.929] [Info] detected supported OpenGL texture size 8192, using atlasNumCells 128
    [20:45:59.070] [Info] detected supported OpenGL texture size 8192, using atlasNumCells 256
    [20:45:59.070] [Info] detected supported OpenGL texture size 8192, using atlasNumCells 256
    [20:45:59.070] [Info] Setting steam rich presence connection as steam id 76561198088833787
    [20:46:03.579] [Info] UniverseServer: Warping player 1 to ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [21:13:08.008] [Info] UniverseServer: Loading celestial world 418466644:718566457:-252276695:8
    [21:13:08.487] [Info] Protected dungeonIds for world set to (65524)
    [21:13:09.224] [Info] UniverseServer: Warping player 1 to CelestialWorld:418466644:718566457:-252276695:8=c5a42b9f2be10d70c59a75219386f048
    [21:13:09.408] [Info] Client received world stop packet, leaving: Removed
    [21:13:11.567] [Info] UniverseServer: Stopping idle world ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [21:15:23.945] [Info] UniverseServer: Loading client ship world ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [21:15:24.405] [Info] Protected dungeonIds for world set to (65524)
    [21:15:26.781] [Info] UniverseServer: Warping player 1 to ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [21:15:26.813] [Info] Client received world stop packet, leaving: Removed
    [21:15:26.863] [Info] UniverseServer: Stopping idle world CelestialWorld:418466644:718566457:-252276695:8
    [21:16:25.805] [Info] UniverseServer: Loading celestial world 418466644:718566457:-252276695:8
    [21:16:26.209] [Info] Protected dungeonIds for world set to (65524)
    [21:16:26.512] [Info] UniverseServer: Warping player 1 to CelestialWorld:418466644:718566457:-252276695:8=c5a42b9f2be10d70c59a75219386f048
    [21:16:26.572] [Info] Client received world stop packet, leaving: Removed
    [21:16:27.891] [Info] UniverseServer: Stopping idle world ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [23:13:48.631] [Info] UniverseServer: Loading client ship world ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [23:13:49.308] [Info] Protected dungeonIds for world set to (65524)
    [23:13:52.421] [Info] UniverseServer: Warping player 1 to ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [23:13:52.537] [Info] Client received world stop packet, leaving: Removed
    [23:13:52.559] [Info] UniverseServer: Stopping idle world CelestialWorld:418466644:718566457:-252276695:8
    [23:15:28.662] [Info] UniverseServer: Loading celestial world 418466644:718566457:-252276695:11
    [23:15:29.209] [Info] Protected dungeonIds for world set to (65524)
    [23:15:31.348] [Info] UniverseServer: Warping player 1 to CelestialWorld:418466644:718566457:-252276695:11=9f92fd4f0be022e3f263f7064efa3a78
    [23:15:31.622] [Info] Client received world stop packet, leaving: Removed
    [23:15:32.377] [Info] UniverseServer: Stopping idle world ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [23:18:55.861] [Info] Skipped event recording for nonexistent entity 2818
    [23:19:38.248] [Info] Skipped event recording for nonexistent entity 2795
    [23:19:38.248] [Info] Skipped event recording for nonexistent entity 2794
    [23:19:40.603] [Info] Skipped event recording for nonexistent entity 2793
    [23:21:03.701] [Info] Skipped event recording for nonexistent entity 6514
    [23:21:03.701] [Info] Skipped event recording for nonexistent entity 6513
    [23:21:20.104] [Info] Skipped event recording for nonexistent entity 7029
    [23:23:41.725] [Info] Skipped event recording for nonexistent entity 11147
    [23:23:53.715] [Info] UniverseServer: Loading client ship world ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [23:23:54.397] [Info] Protected dungeonIds for world set to (65524)
    [23:23:57.529] [Info] UniverseServer: Warping player 1 to ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [23:23:57.595] [Info] Client received world stop packet, leaving: Removed
    [23:23:57.872] [Info] UniverseServer: Stopping idle world CelestialWorld:418466644:718566457:-252276695:11
    [23:24:30.464] [Info] UniverseServer: Loading celestial world 418466644:718566457:-252276695:11
    [23:24:30.919] [Info] Protected dungeonIds for world set to (65524)
    [23:24:31.674] [Info] UniverseServer: Warping player 1 to CelestialWorld:418466644:718566457:-252276695:11=b6d73823a84f154510b11f80245fb4bf
    [23:24:32.241] [Info] Client received world stop packet, leaving: Removed
    [23:24:33.633] [Info] UniverseServer: Stopping idle world ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [23:33:20.749] [Info] Skipped event recording for nonexistent entity 6476
    [23:43:04.276] [Info] Root: Writing runtime configuration to '..\storage\starbound.config'
    [23:44:55.633] [Error] Exception while invoking lua function 'update'. (LuaException) Error code 2, [string "/npcs/bmain.lua"]:162: (StarException) Lua Exception caught running action node chooseReaction in behavior crewmember: (LuaException) Error code 2, [string "/scripts/actions/reaction.lua"]:20: (StarException) Entity 32191 does not exist or is not a local master scripted entity
    [0] 7ff777937713 Star::captureStack
    [1] 7ff77793649e Star::StarException::StarException
    [2] 7ff7779367e5 Star::StarException::StarException
    [3] 7ff7780106f6 Star::StarException::format<int>
    [4] 7ff77803ee0b Star::LuaBindings::WorldEntityCallbacks::callScriptedEntity
    [5] 7ff777ffec64 std::_Invoker_functor::_Call<Star::Maybe<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> > (__cdecl*const & __ptr64)(Star::World * __ptr64,int,Star::String const & __ptr64,Star::LuaVariadic<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> > const & __ptr64),Star::World * __ptr64 const & __ptr64,int,Star::String,Star::LuaVariadic<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> > >
    [6] 7ff778012cda std::invoke<Star::Maybe<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> > (__cdecl*const & __ptr64)(Star::World * __ptr64,int,Star::String const & __ptr64,Star::LuaVariadic<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> > const & __ptr64),Star::World * __ptr64 const & __ptr64,int,Star::String,Star::LuaVariadic<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> > >
    [7] 7ff77800349b std::_Invoke_ret<Star::Maybe<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> > (__cdecl*const & __ptr64)(Star::World * __ptr64,int,Star::String const & __ptr64,Star::LuaVariadic<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> > const & __ptr64),Star::World * __ptr64 const & __ptr64,int,Star::String,Star::LuaVariadic<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> > >
    [8] 7ff77800098a std::_Call_binder<std::_Unforced,0,1,2,3,Star::Maybe<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> > (__cdecl*const)(Star::World * __ptr64,int,Star::String const & __ptr64,Star::LuaVariadic<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> > const & __ptr64),std::tuple<Star::World * __ptr64,std::_Ph<1>,std::_Ph<2>,std::_Ph<3> > const ,std::tuple<int && __ptr64,Star::String && __ptr64,Star::LuaVariadic<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> > && __ptr64> >
    [9] 7ff777ffac2f std::_Binder<std::_Unforced,Star::Maybe<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> > (__cdecl&)(Star::World * __ptr64,int,Star::String const & __ptr64,Star::LuaVariadic<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> > const & __ptr64),Star::World * __ptr64 & __ptr64,std::_Ph<1> const & __ptr64,std::_Ph<2> const & __ptr64,std::_Ph<3> const & __ptr64>::operator()<int,Star::String,Star::LuaVariadic<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> > >
    [10] 7ff7780334fb <lambda_cf8e2fc210c152351a677d981806b1c3>::operator()
    [11] 7ff777ffdaff std::_Invoker_functor::_Call<<lambda_cf8e2fc210c152351a677d981806b1c3> & __ptr64,Star::LuaEngine & __ptr64,unsigned __int64,Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> * __ptr64>
    [12] 7ff778012420 std::invoke<<lambda_cf8e2fc210c152351a677d981806b1c3> & __ptr64,Star::LuaEngine & __ptr64,unsigned __int64,Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> * __ptr64>
    [13] 7ff7780059e9 std::_Invoke_ret<Star::Variant<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData>,Star::LuaVariadic<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> > >,<lambda_cf8e2fc210c152351a677d981806b1c3> & __ptr64,Star::LuaEngine & __ptr64,unsigned __int64,Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> * __ptr64>
    [14] 7ff778039efb std::_Func_impl<<lambda_cf8e2fc210c152351a677d981806b1c3>,std::allocator<int>,Star::Variant<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData>,Star::LuaVariadic<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> > >,Star::LuaEngine & __ptr64,unsigned __int64,Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> * __ptr64>::_Do_call
    [15] 7ff77790510d std::_Func_class<Star::Variant<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData>,Star::LuaVariadic<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> > >,Star::LuaEngine & __ptr64,unsigned __int64,Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> * __ptr64>::operator()
    [16] 7ff77790409f <lambda_a03bcae4599b53751a446949639a4d5e>::operator()
    [17] 7ff77788bec8 luaD_precall
    [18] 7ff7778a4c71 luaV_execute
    [19] 7ff77788c1ab luaD_rawrunprotected
    [20] 7ff77788c4cf lua_resume
    [21] 7ff7779a9e3c Star::LuaEngine::resumeThread<Star::LuaTable,std::weak_ptr<Star::Blackboard>,unsigned __int64,float>
    [22] 7ff7779a9531 Star::LuaThread::resume<Star::LuaTupleReturn<enum Star::NodeStatus,Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> >,Star::LuaTable,std::weak_ptr<Star::Blackboard>,unsigned __int64,float>
    [23] 7ff7779b4c44 Star::BehaviorState::runAction
    [24] 7ff7779b576f Star::BehaviorState::runNode
    [25] 7ff7779b5efa Star::BehaviorState::runSequence
    [26] 7ff7779b50d0 Star::BehaviorState::runComposite
    [27] 7ff7779b5785 Star::BehaviorState::runNode
    [28] 7ff7779b53a5 Star::BehaviorState::runDecorator
    [29] 7ff7779b577a Star::BehaviorState::runNode
    [30] 7ff7779b5efa Star::BehaviorState::runSequence
    [31] 7ff7779b50d0 Star::BehaviorState::runComposite
    [32] 7ff7779b5785 Star::BehaviorState::runNode
    [33] 7ff7779b53a5 Star::BehaviorState::runDecorator
    [34] 7ff7779b577a Star::BehaviorState::runNode
    [35] 7ff7779b53a5 Star::BehaviorState::runDecorator
    [36] 7ff7779b577a Star::BehaviorState::runNode
    [37] 7ff7779b5efa Star::BehaviorState::runSequence
    [38] 7ff7779b50d0 Star::BehaviorState::runComposite
    [39] 7ff7779b5785 Star::BehaviorState::runNode
    [40] 7ff7779b5978 Star::BehaviorState::runParallel
    [41] 7ff7779b5104 Star::BehaviorState::runComposite
    [42] 7ff7779b5785 Star::BehaviorState::runNode
    [43] 7ff7779b5efa Star::BehaviorState::runSequence
    [44] 7ff7779b50d0 Star::BehaviorState::runComposite
    [45] 7ff7779b5785 Star::BehaviorState::runNode
    [46] 7ff7779b5efa Star::BehaviorState::runSequence
    [47] 7ff7779b50d0 Star::BehaviorState::runComposite
    [48] 7ff7779b5785 Star::BehaviorState::runNode
    [49] 7ff7779b53a5 Star::BehaviorState::runDecorator
    [50] 7ff7779b577a Star::BehaviorState::runNode
    [51] 7ff7779b53a5 Star::BehaviorState::runDecorator
    [52] 7ff7779b577a Star::BehaviorState::runNode
    [53] 7ff7779b5d2d Star::BehaviorState::runSelector
    [54] 7ff7779b50ea Star::BehaviorState::runComposite
    [55] 7ff7779b5785 Star::BehaviorState::runNode
    [56] 7ff7779b55ef Star::BehaviorState::runDynamic
    [57] 7ff7779b511e Star::BehaviorState::runComposite
    [58] 7ff7779b5785 Star::BehaviorState::runNode
    [59] 7ff7779b5978 Star::BehaviorState::runParallel
    [60] 7ff7779b5104 Star::BehaviorState::runComposite
    [61] 7ff7779b5785 Star::BehaviorState::runNode
    [62] 7ff7779b55ef Star::BehaviorState::runDynamic
    [63] 7ff7779b511e Star::BehaviorState::runComposite
    [64] 7ff7779b5785 Star::BehaviorState::runNode
    [65] 7ff7779b5978 Star::BehaviorState::runParallel
    [66] 7ff7779b5104 Star::BehaviorState::runComposite
    [67] 7ff7779b5785 Star::BehaviorState::runNode
    [68] 7ff7779b4a28 Star::BehaviorState::run
    [69] 7ff777facfbe <lambda_c00a27f6cddfafb872d0f8c0617836e5>::operator()
    [70] 7ff777fac4a9 <lambda_8b39829c64d733afef46ba23ecb7c7c1>::operator()
    [71] 7ff777fa51ff std::_Invoker_functor::_Call<<lambda_8b39829c64d733afef46ba23ecb7c7c1> & __ptr64,Star::LuaEngine & __ptr64,unsigned __int64,Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> * __ptr64>
    [72] 7ff777fa6880 std::invoke<<lambda_8b39829c64d733afef46ba23ecb7c7c1> & __ptr64,Star::LuaEngine & __ptr64,unsigned __int64,Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> * __ptr64>
    [73] 7ff777fa59d9 std::_Invoke_ret<Star::Variant<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData>,Star::LuaVariadic<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> > >,<lambda_8b39829c64d733afef46ba23ecb7c7c1> & __ptr64,Star::LuaEngine & __ptr64,unsigned __int64,Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> * __ptr64>
    [74] 7ff777fae45b std::_Func_impl<<lambda_8b39829c64d733afef46ba23ecb7c7c1>,std::allocator<int>,Star::Variant<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData>,Star::LuaVariadic<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> > >,Star::LuaEngine & __ptr64,unsigned __int64,Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> * __ptr64>::_Do_call
    [75] 7ff77790510d std::_Func_class<Star::Variant<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData>,Star::LuaVariadic<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> > >,Star::LuaEngine & __ptr64,unsigned __int64,Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> * __ptr64>::operator()
    [76] 7ff77790409f <lambda_a03bcae4599b53751a446949639a4d5e>::operator()
    [77] 7ff77788bec8 luaD_precall
    [78] 7ff7778a4c71 luaV_execute
    [79] 7ff77788b9d3 luaD_call
    [80] 7ff77788c1ab luaD_rawrunprotected
    [81] 7ff77788bbe0 luaD_pcall
    [82] 7ff7778820f4 lua_pcallk
    [83] 7ff77790c0d0 Star::LuaEngine::pcallWithTraceback
    [84] 7ff777afaa8e Star::LuaEngine::callFunction<float>
    [85] 7ff777afe215 Star::LuaFunction::invoke<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData>,float>
    [86] 7ff777afe130 Star::LuaBaseComponent::invoke<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData>,float>
    [87] 7ff777b04ebc Star::LuaUpdatableComponent<Star::LuaWorldComponent<Star::LuaBaseComponent> >::update<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData>,float>
    [88] 7ff777b04e2c Star::LuaActorMovementComponent<Star::LuaUpdatableComponent<Star::LuaWorldComponent<Star::LuaBaseComponent> > >::update<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData>,float>
    [89] 7ff777bb9db9 Star::Npc::update
    [90] 7ff777edb7fe <lambda_5251ea3b435705ab973fc9e3a86aa323>::operator()
    [91] 7ff777a8b9f7 Star::EntityMap::updateAllEntities
    [92] 7ff777efea34 Star::WorldServer::update
    [93] 7ff777f04e96 Star::WorldServerThread::update
    [94] 7ff777f04888 Star::WorldServerThread::run
    [95] 7ff77793425e Star::ThreadImpl::runThread
    [96] 7ffafab08364 BaseThreadInitThunk
    [97] 7ffafbc45e91 RtlUserThreadStart
    stack traceback:
        [C]: in field 'callScriptedEntity'
        [string "/scripts/actions/reaction.lua"]:20: in global 'getReaction'
        [string "/scripts/actions/reaction.lua"]:63: in function <[string "/scripts/actions/reaction.lua"]:60>
    [0] 7ff777937713 Star::captureStack
    [1] 7ff77793649e Star::StarException::StarException
    [2] 7ff7779367e5 Star::StarException::StarException
    [3] 7ff77828427c `Star::BehaviorState::runAction'::`1'::catch$193
    [4] 7ffaf4d4c220 _C_specific_handler
    [5] 7ffaf4d429b2 _FrameUnwindFilter
    [6] 7ffafbc88f13 RtlCaptureContext
    [7] 7ff7779b4c44 Star::BehaviorState::runAction
    [8] 7ff7779b576f Star::BehaviorState::runNode
    [9] 7ff7779b5efa Star::BehaviorState::runSequence
    [10] 7ff7779b50d0 Star::BehaviorState::runComposite
    [11] 7ff7779b5785 Star::BehaviorState::runNode
    [12] 7ff7779b53a5 Star::BehaviorState::runDecorator
    [13] 7ff7779b577a Star::BehaviorState::runNode
    [14] 7ff7779b5efa Star::BehaviorState::runSequence
    [15] 7ff7779b50d0 Star::BehaviorState::runComposite
    [16] 7ff7779b5785 Star::BehaviorState::runNode
    [17] 7ff7779b53a5 Star::BehaviorState::runDecorator
    [18] 7ff7779b577a Star::BehaviorState::runNode
    [19] 7ff7779b53a5 Star::BehaviorState::runDecorator
    [20] 7ff7779b577a Star::BehaviorState::runNode
    [21] 7ff7779b5efa Star::BehaviorState::runSequence
    [22] 7ff7779b50d0 Star::BehaviorState::runComposite
    [23] 7ff7779b5785 Star::BehaviorState::runNode
    [24] 7ff7779b5978 Star::BehaviorState::runParallel
    [25] 7ff7779b5104 Star::BehaviorState::runComposite
    [26] 7ff7779b5785 Star::BehaviorState::runNode
    [27] 7ff7779b5efa Star::BehaviorState::runSequence
    [28] 7ff7779b50d0 Star::BehaviorState::runComposite
    [29] 7ff7779b5785 Star::BehaviorState::runNode
    [30] 7ff7779b5efa Star::BehaviorState::runSequence
    [31] 7ff7779b50d0 Star::BehaviorState::runComposite
    [32] 7ff7779b5785 Star::BehaviorState::runNode
    [33] 7ff7779b53a5 Star::BehaviorState::runDecorator
    [34] 7ff7779b577a Star::BehaviorState::runNode
    [35] 7ff7779b53a5 Star::BehaviorState::runDecorator
    [36] 7ff7779b577a Star::BehaviorState::runNode
    [37] 7ff7779b5d2d Star::BehaviorState::runSelector
    [38] 7ff7779b50ea Star::BehaviorState::runComposite
    [39] 7ff7779b5785 Star::BehaviorState::runNode
    [40] 7ff7779b55ef Star::BehaviorState::runDynamic
    [41] 7ff7779b511e Star::BehaviorState::runComposite
    [42] 7ff7779b5785 Star::BehaviorState::runNode
    [43] 7ff7779b5978 Star::BehaviorState::runParallel
    [44] 7ff7779b5104 Star::BehaviorState::runComposite
    [45] 7ff7779b5785 Star::BehaviorState::runNode
    [46] 7ff7779b55ef Star::BehaviorState::runDynamic
    [47] 7ff7779b511e Star::BehaviorState::runComposite
    [48] 7ff7779b5785 Star::BehaviorState::runNode
    [49] 7ff7779b5978 Star::BehaviorState::runParallel
    [50] 7ff7779b5104 Star::BehaviorState::runComposite
    [51] 7ff7779b5785 Star::BehaviorState::runNode
    [52] 7ff7779b4a28 Star::BehaviorState::run
    [53] 7ff777facfbe <lambda_c00a27f6cddfafb872d0f8c0617836e5>::operator()
    [54] 7ff777fac4a9 <lambda_8b39829c64d733afef46ba23ecb7c7c1>::operator()
    [55] 7ff777fa51ff std::_Invoker_functor::_Call<<lambda_8b39829c64d733afef46ba23ecb7c7c1> & __ptr64,Star::LuaEngine & __ptr64,unsigned __int64,Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> * __ptr64>
    [56] 7ff777fa6880 std::invoke<<lambda_8b39829c64d733afef46ba23ecb7c7c1> & __ptr64,Star::LuaEngine & __ptr64,unsigned __int64,Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> * __ptr64>
    [57] 7ff777fa59d9 std::_Invoke_ret<Star::Variant<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData>,Star::LuaVariadic<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> > >,<lambda_8b39829c64d733afef46ba23ecb7c7c1> & __ptr64,Star::LuaEngine & __ptr64,unsigned __int64,Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> * __ptr64>
    [58] 7ff777fae45b std::_Func_impl<<lambda_8b39829c64d733afef46ba23ecb7c7c1>,std::allocator<int>,Star::Variant<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData>,Star::LuaVariadic<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> > >,Star::LuaEngine & __ptr64,unsigned __int64,Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> * __ptr64>::_Do_call
    [59] 7ff77790510d std::_Func_class<Star::Variant<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData>,Star::LuaVariadic<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> > >,Star::LuaEngine & __ptr64,unsigned __int64,Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData> * __ptr64>::operator()
    [60] 7ff77790409f <lambda_a03bcae4599b53751a446949639a4d5e>::operator()
    [61] 7ff77788bec8 luaD_precall
    [62] 7ff7778a4c71 luaV_execute
    [63] 7ff77788b9d3 luaD_call
    [64] 7ff77788c1ab luaD_rawrunprotected
    [65] 7ff77788bbe0 luaD_pcall
    [66] 7ff7778820f4 lua_pcallk
    [67] 7ff77790c0d0 Star::LuaEngine::pcallWithTraceback
    [68] 7ff777afaa8e Star::LuaEngine::callFunction<float>
    [69] 7ff777afe215 Star::LuaFunction::invoke<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData>,float>
    [70] 7ff777afe130 Star::LuaBaseComponent::invoke<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData>,float>
    [71] 7ff777b04ebc Star::LuaUpdatableComponent<Star::LuaWorldComponent<Star::LuaBaseComponent> >::update<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData>,float>
    [72] 7ff777b04e2c Star::LuaActorMovementComponent<Star::LuaUpdatableComponent<Star::LuaWorldComponent<Star::LuaBaseComponent> > >::update<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData>,float>
    [73] 7ff777bb9db9 Star::Npc::update
    [74] 7ff777edb7fe <lambda_5251ea3b435705ab973fc9e3a86aa323>::operator()
    [75] 7ff777a8b9f7 Star::EntityMap::updateAllEntities
    [76] 7ff777efea34 Star::WorldServer::update
    [77] 7ff777f04e96 Star::WorldServerThread::update
    [78] 7ff777f04888 Star::WorldServerThread::run
    [79] 7ff77793425e Star::ThreadImpl::runThread
    [80] 7ffafab08364 BaseThreadInitThunk
    [81] 7ffafbc45e91 RtlUserThreadStart
    stack traceback:
        [C]: in ?
        [C]: in method 'run'
        [string "/npcs/bmain.lua"]:162: in function <[string "/npcs/bmain.lua"]:119>
    [0] 7ff777937713 Star::captureStack
    [1] 7ff77793649e Star::StarException::StarException
    [2] 7ff77790ac61 Star::LuaEngine::handleError
    [3] 7ff777afaaa7 Star::LuaEngine::callFunction<float>
    [4] 7ff777afe215 Star::LuaFunction::invoke<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData>,float>
    [5] 7ff777afe130 Star::LuaBaseComponent::invoke<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData>,float>
    [6] 7ff777b04ebc Star::LuaUpdatableComponent<Star::LuaWorldComponent<Star::LuaBaseComponent> >::update<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData>,float>
    [7] 7ff777b04e2c Star::LuaActorMovementComponent<Star::LuaUpdatableComponent<Star::LuaWorldComponent<Star::LuaBaseComponent> > >::update<Star::Variant<Star::Empty,bool,__int64,double,Star::String,Star::LuaTable,Star::LuaFunction,Star::LuaThread,Star::LuaUserData>,float>
    [8] 7ff777bb9db9 Star::Npc::update
    [9] 7ff777edb7fe <lambda_5251ea3b435705ab973fc9e3a86aa323>::operator()
    [10] 7ff777a8b9f7 Star::EntityMap::updateAllEntities
    [11] 7ff777efea34 Star::WorldServer::update
    [12] 7ff777f04e96 Star::WorldServerThread::update
    [13] 7ff777f04888 Star::WorldServerThread::run
    [14] 7ff77793425e Star::ThreadImpl::runThread
    [15] 7ffafab08364 BaseThreadInitThunk
    [16] 7ffafbc45e91 RtlUserThreadStart
    [23:47:39.625] [Info] Root: Writing runtime configuration to '..\storage\starbound.config'
    [23:53:27.904] [Info] UniverseServer: Loading client ship world ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [23:53:28.594] [Info] Protected dungeonIds for world set to (65524)
    [23:53:33.418] [Info] UniverseServer: Warping player 1 to ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [23:53:33.527] [Info] Client received world stop packet, leaving: Removed
    [23:53:33.660] [Info] UniverseServer: Stopping idle world CelestialWorld:418466644:718566457:-252276695:11
    [23:55:49.559] [Info] UniverseServer: Loading persistent unique instance world spacestation_medical
    [23:55:49.650] [Info] Protected dungeonIds for world set to (0, 65524)
    [23:55:49.815] [Info] UniverseServer: Warping player 1 to InstanceWorld:spacestation_medical:0eb532084812bc9649266316c6b4b48f:1
    [23:55:49.821] [Info] UniverseServer: Stopping idle world ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [23:55:49.832] [Info] Client received world stop packet, leaving: Removed
    [00:02:07.456] [Info] UniverseServer: Loading client ship world ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [00:02:08.079] [Info] Protected dungeonIds for world set to (65524)
    [00:02:11.262] [Info] UniverseServer: Warping player 1 to ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [00:02:11.308] [Info] Client received world stop packet, leaving: Removed
    [00:02:11.524] [Info] UniverseServer: Stopping idle world InstanceWorld:spacestation_medical:0eb532084812bc9649266316c6b4b48f:1
    [00:02:40.961] [Info] Flying ship for player 1 to 418466644:718566457:-252276695
    [00:02:55.809] [Info] UniverseServer: Arriving ship for player 1 at 418466644:718566457:-252276695
    [00:05:09.163] [Info] UniverseServer: Creating temporary instance world 'InstanceWorld:pirateship:beb1df713b7b6b0bbeeb60848242278e:3' with expiry time 600000
    [00:05:09.371] [Info] Protected dungeonIds for world set to (65524)
    [00:05:09.371] [Info] Placing dungeon pirateship
    [00:05:09.371] [Info] Forcing generation of dungeon pirateship
    [00:05:09.371] [Info] Placing dungeon at (0, 150)
    [00:05:12.796] [Info] Protected dungeonIds for world set to (0, 65524)
    [00:05:14.213] [Info] UniverseServer: Warping player 1 to InstanceWorld:pirateship:beb1df713b7b6b0bbeeb60848242278e:3
    [00:05:15.359] [Info] Client received world stop packet, leaving: Removed
    [00:05:15.360] [Info] UniverseServer: Stopping idle world ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [00:05:26.313] [Info] Root: Writing runtime configuration to '..\storage\starbound.config'
    [00:08:06.601] [Info] Root: Writing runtime configuration to '..\storage\starbound.config'
    [00:08:11.667] [Info] Root: Writing runtime configuration to '..\storage\starbound.config'
    [00:10:20.600] [Info] UniverseServer: Loading client ship world ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [00:10:21.120] [Info] Protected dungeonIds for world set to (65524)
    [00:10:23.987] [Info] UniverseServer: Warping player 1 to ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [00:10:24.051] [Info] Client received world stop packet, leaving: Removed
    [00:10:24.104] [Info] UniverseServer: Stopping idle world InstanceWorld:pirateship:beb1df713b7b6b0bbeeb60848242278e:3
    [00:10:58.156] [Info] UniverseServer: Loading temporary instance world InstanceWorld:pirateship:beb1df713b7b6b0bbeeb60848242278e:3 from storage
    [00:10:58.161] [Info] Protected dungeonIds for world set to (0, 65524)
    [00:10:58.363] [Info] UniverseServer: Warping player 1 to InstanceWorld:pirateship:beb1df713b7b6b0bbeeb60848242278e:3
    [00:10:58.380] [Info] UniverseServer: Stopping idle world ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [00:10:58.465] [Info] Client received world stop packet, leaving: Removed
    [00:11:11.990] [Info] Root: Writing runtime configuration to '..\storage\starbound.config'
    [00:13:42.778] [Info] UniverseServer: Loading client ship world ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [00:13:43.286] [Info] Protected dungeonIds for world set to (65524)
    [00:13:46.062] [Info] UniverseServer: Warping player 1 to ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [00:13:46.111] [Info] Client received world stop packet, leaving: Removed
    [00:13:46.159] [Info] UniverseServer: Stopping idle world InstanceWorld:pirateship:beb1df713b7b6b0bbeeb60848242278e:3
    [00:14:42.308] [Info] Flying ship for player 1 to 418466644:718566457:-252276695
    [00:15:04.345] [Info] UniverseServer: Arriving ship for player 1 at 418466644:718566457:-252276695
    [00:16:32.477] [Info] Flying ship for player 1 to 418466644:718566457:-252276695:3
    [00:16:33.843] [Info] UniverseServer: Creating celestial world 418466644:718566457:-252276695:3
    [00:16:34.936] [Info] Protected dungeonIds for world set to (65524)
    [00:16:34.936] [Info] Placing dungeon hylotloceancity
    [00:16:35.854] [Info] Generating dungeon hylotloceancity
    [00:16:35.900] [Info] Placing dungeon at (4114, 850)
    [00:16:38.291] [Warn] Failed to place dungeon object: hylotllamp direction: 1 position: (4314, 842)
    [00:16:38.294] [Warn] Failed to place dungeon object: hylotllamp direction: 1 position: (4345, 842)
    [00:16:39.338] [Warn] Failed to place dungeon object: hylotllamp direction: 1 position: (4229, 887)
    [00:16:39.340] [Warn] Failed to place dungeon object: hylotllamp direction: 1 position: (4260, 887)
    [00:16:39.375] [Warn] Failed to place dungeon object: hylotllilydeco2 direction: 1 position: (4415, 892)
    [00:16:39.995] [Warn] Failed to place dungeon object: hylotlcalligraphy2 direction: 1 position: (4494, 917)
    [00:16:40.806] [Warn] Failed to place dungeon object: vaseclassicmedium2 direction: 1 position: (4340, 947)
    [00:16:41.697] [Warn] Failed to place dungeon object: ornatetorch direction: 0 position: (4319, 1039)
    [00:16:41.697] [Warn] Failed to place dungeon object: ornatetorch direction: 1 position: (4354, 1039)
    [00:16:45.607] [Info] Protected dungeonIds for world set to (0, 65524)
    [00:16:45.617] [Info] Placing dungeon hylotlruinedcity
    [00:16:47.639] [Info] Generating dungeon hylotlruinedcity
    [00:16:47.641] [Info] Placing dungeon at (893, 850)
    [00:16:52.036] [Warn] Failed to place dungeon object: hylotlcalligraphy4 direction: 1 position: (1015, 816)
    [00:17:04.938] [Info] UniverseServer: Arriving ship for player 1 at 418466644:718566457:-252276695:3
    [00:17:05.667] [Info] UniverseServer: Stopping idle world CelestialWorld:418466644:718566457:-252276695:3
    [00:17:39.801] [Info] UniverseServer: Loading celestial world 418466644:718566457:-252276695:3
    [00:17:40.145] [Info] Protected dungeonIds for world set to (0, 65524)
    [00:17:40.383] [Info] UniverseServer: Warping player 1 to CelestialWorld:418466644:718566457:-252276695:3
    [00:17:40.399] [Info] Client received world stop packet, leaving: Removed
    [00:17:40.407] [Info] UniverseServer: Stopping idle world ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [00:19:17.834] [Info] Root: Writing runtime configuration to '..\storage\starbound.config'
    [00:19:37.636] [Info] UniverseServer: Loading client ship world ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [00:19:38.120] [Info] Protected dungeonIds for world set to (65524)
    [00:19:40.779] [Info] UniverseServer: Warping player 1 to ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [00:19:40.847] [Info] UniverseServer: Stopping idle world CelestialWorld:418466644:718566457:-252276695:3
    [00:19:40.864] [Info] Client received world stop packet, leaving: Removed
    [00:21:04.795] [Info] UniverseServer: Loading celestial world 418466644:718566457:-252276695:3
    [00:21:05.117] [Info] Protected dungeonIds for world set to (0, 65524)
    [00:21:05.327] [Info] UniverseServer: Warping player 1 to CelestialWorld:418466644:718566457:-252276695:3
    [00:21:05.344] [Info] Client received world stop packet, leaving: Removed
    [00:21:05.355] [Info] UniverseServer: Stopping idle world ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [00:22:14.806] [Info] Skipped event recording for nonexistent entity 93
    [00:22:14.806] [Info] Skipped event recording for nonexistent entity 95
    [00:23:58.654] [Info] UniverseServer: Expiring temporary world InstanceWorld:pirateship:beb1df713b7b6b0bbeeb60848242278e:3
    [00:25:07.134] [Info] UniverseServer: Loading client ship world ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [00:25:07.604] [Info] Protected dungeonIds for world set to (65524)
    [00:25:10.732] [Info] UniverseServer: Warping player 1 to ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [00:25:10.767] [Info] Client received world stop packet, leaving: Removed
    [00:25:10.821] [Info] UniverseServer: Stopping idle world CelestialWorld:418466644:718566457:-252276695:3
    [00:25:43.456] [Info] UniverseServer: Loading celestial world 418466644:718566457:-252276695:3
    [00:25:43.784] [Info] Protected dungeonIds for world set to (0, 65524)
    [00:25:44.007] [Info] UniverseServer: Warping player 1 to CelestialWorld:418466644:718566457:-252276695:3
    [00:25:44.091] [Info] UniverseServer: Stopping idle world ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [00:25:44.204] [Info] Client received world stop packet, leaving: Removed
    [00:31:31.666] [Info] UniverseServer: Loading client ship world ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [00:31:32.186] [Info] Protected dungeonIds for world set to (65524)
    [00:31:35.275] [Info] UniverseServer: Warping player 1 to ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [00:31:35.299] [Info] Client received world stop packet, leaving: Removed
    [00:31:35.388] [Info] UniverseServer: Stopping idle world CelestialWorld:418466644:718566457:-252276695:3
    [00:32:23.321] [Info] UniverseClient: Client disconnecting...
    [00:32:23.396] [Info] Client received world stop packet, leaving: Removed
    [00:32:23.858] [Info] UniverseServer: Client 'Swiftblade' <1> (local) disconnected for reason:
    [00:32:23.859] [Info] UniverseServer: Stopping idle world ClientShipWorld:15b9411c104bce52a3ee607a5609cb56
    [00:32:24.621] [Info] UniverseServer: Stopping UniverseServer
    [00:32:24.819] [Info] Clearing steam rich presence connection
    [00:32:31.479] [Info] Application: quit requested
    [00:32:31.479] [Info] Application: quitting...
    [00:32:31.479] [Info] Application: shutdown...
    [00:32:33.025] [Info] Root: Shutting down Root
    [00:32:41.634] [Info] Application: Destroying SDL Window
    [00:32:42.112] [Info] Application: stopped gracefully
    
     
  16. SpazDiesFirst360.0

    SpazDiesFirst360.0 Phantasmal Quasar

    I took a look at bmain.lua, and honestly, in around 2-3 months of me modding, I have only touched lua once for augments, but I saw something that may relate to your problem:

    This is bmain.lua;
    Code:
    require "/scripts/behavior.lua"
    require "/scripts/pathing.lua"
    require "/scripts/util.lua"
    require "/scripts/vec2.lua"
    require "/scripts/quest/participant.lua"
    require "/scripts/relationships.lua"
    require "/scripts/actions/dialog.lua"
    require "/scripts/actions/movement.lua"
    require "/scripts/drops.lua"
    require "/scripts/statusText.lua"
    require "/scripts/tenant.lua"
    require "/scripts/companions/recruitable.lua"
    
    -- Engine callback - called on initialization of entity
    function init()
      restorePreservedStorage()
    
      self.shouldDie = true
      self.forceDie = false
      self.pathing = {}
    
      self.notifications = {}
      if storage.spawnPosition == nil then
        local position = mcontroller.position()
        local groundPosition = findGroundPosition(position, -20, 3)
        storage.spawnPosition = groundPosition or position
      end
    
      local questOutbox = Outbox.new("questOutbox", ContactList.new("questContacts"))
      self.quest = QuestParticipant.new("quest", questOutbox)
      self.quest.onOfferedQuestStarted = offeredQuestStarted
      self.quest.onOfferedQuestFinished = offeredQuestFinished
    
      if config.getParameter("behavior") then
        self.behavior = behavior.behavior(config.getParameter("behavior"), config.getParameter("behaviorConfig", {}), _ENV)
    
        self.board = self.behavior:blackboard()
        self.board:setPosition("spawn", storage.spawnPosition)
      end
    
      npc.setInteractive(true)
      script.setUpdateDelta(10)
    
      self.behaviorConfig = config.getParameter("behaviorConfig", {})
      if personality().behaviorConfig then
        self.behaviorConfig = applyDefaults(personality().behaviorConfig, self.behaviorConfig)
      end
    
      self.primary = npc.getItemSlot("primary")
      self.alt = npc.getItemSlot("alt")
      self.sheathedPrimary = npc.getItemSlot("sheathedprimary")
      self.sheathedAlt = npc.getItemSlot("sheathedalt")
      self.delayedSetItemSlot = {}
    
      self.debug = false
    
      mcontroller.setAutoClearControls(false)
    
      self.stuckCheckTime = config.getParameter("stuckCheckTime", 3.0)
      self.stuckCheckTimer = 0.1
    
      message.setHandler("notify", function (_, _, notification)
          return notify(notification)
        end)
    
      message.setHandler("suicide", function ()
          status.setResource("health", 0)
        end)
    
    self.uniqueId = config.getParameter("uniqueId")
      updateUniqueId()
    
      npc.setDamageOnTouch(true)
      npc.setAggressive(config.getParameter("aggressive", false))
    
      if (config.getParameter("facingDirection")) then
        mcontroller.controlFace(config.getParameter("facingDirection"))
      end
    
      recruitable.init()
    
      if type(extraInit) == "function" then
        extraInit()
      end
    end
    
    -- The colony and crew systems repeatedly kill and respawn the same NPCs.
    -- Certain things about them that change during their lifetime (item slots,
    -- etc.) need to be preserved between spawns.
    function restorePreservedStorage()
      for k, v in pairs(config.getParameter("initialStorage", {})) do
        if storage[k] == nil then
          storage[k] = v
        end
      end
      for slot, item in pairs(storage.itemSlots or {}) do
        npc.setItemSlot(slot, item)
      end
    end
    
    function preservedStorage()
      return {
          itemSlots = storage.itemSlots,
          relationships = storage.relationships,
          criminal = storage.criminal,
          stolen = storage.stolen,
          extraMerchantItems = storage.extraMerchantItems
        }
    end
    
    function updateUniqueId()
      if self.uniqueId and not entity.uniqueId() then
        npc.setUniqueId(self.uniqueId)
      end
    end
    
    -- Engine callback - called on each update
    -- Update frequencey is dependent on update delta
    function update(dt)
      self.stuckCheckTimer = math.max(0, self.stuckCheckTimer - dt)
      if self.stuckCheckTimer == 0 then
        checkStuck()
        self.stuckCheckTimer = self.stuckCheckTime
      end
    
      updateUniqueId()
    
      self.quest:update()
    
      recruitable.update(dt)
    
      for _,slot in pairs(self.delayedSetItemSlot) do
        setNpcItemSlot(slot.slotName, slot.item)
      end
      self.delayedSetItemSlot = {}
    
      if status.resourcePositive("stunned") then
        mcontroller.clearControls()
        self.stunned = true
        if self.primary and root.itemHasTag(self.primary.name, "ranged") then
          npc.endPrimaryFire()
        end
        return
      end
    
      mcontroller.clearControls()
    
      self.tradingEnabled = false
      self.setFacingDirection = false
      self.primaryFire = false
      self.altFire = false
      self.controlAggressive = false
      self.lounge = false
      self.playing = false
      self.moving = false
    
      self.board:setEntity("self", entity.id())
      self.board:setPosition("self", mcontroller.position())
      self.board:setNumber("facingDirection", mcontroller.facingDirection())
    
      if self.behavior then
        self.behavior:run(dt)
      end
      BGroup:updateGroups()
    
      if self.primaryFire then
        npc.beginPrimaryFire()
      else
        npc.endPrimaryFire()
      end
      if self.altFire then
        npc.beginAltFire()
      else
        npc.endAltFire()
      end
      if self.controlAggressive then
        npc.setAggressive(true)
      else
        npc.setAggressive(config.getParameter("aggressive", false))
      end
      if not self.lounge and npc.isLounging() then
        npc.resetLounging()
      end
      if not self.playing and self.playTarget then
        if world.entityExists(self.playTarget) then
          world.callScriptedEntity(self.playTarget, "npcToy.notifyNpcPlayEnd", entity.id())
        end
        self.playTarget = nil
      end
    
      self.interacted = false
      self.damaged = false
      self.stunned = false
      self.notifications = {}
    
      self.die = (self.shouldDie and not status.resourcePositive("health")) or self.forceDie
    end
    
    -- Engine callback - called on interact
    function interact(args)
      local recruitAction = recruitable.interact(args.sourceId)
      if recruitAction then
        return recruitAction
      end
    
      setInteracted(args)
      if self.tradingConfig ~= nil and self.tradingEnabled then
        return { "OpenMerchantInterface", self.tradingConfig }
      end
    
      if type(handleInteract) == "function" then
        return handleInteract(args)
      else
        local interactAction = config.getParameter("interactAction")
        if interactAction then
          local data = config.getParameter("interactData", {})
          if type(data) == "string" then
            data = root.assetJson(data)
          end
          return { interactAction, data }
        end
      end
    end
    
    function setInteracted(args)
      self.quest:fireEvent("interaction", args.sourceId)
      self.interacted = true
      self.board:setEntity("interactionSource", args.sourceId)
    end
    
    -- Engine callback - called on taking damage
    function damage(args)
      self.damaged = true
      self.board:setEntity("damageSource", args.sourceId)
    end
    
    function shouldDie()
      return self.die
    end
    
    function die()
      self.quest:die()
      recruitable.die()
      tenant.backup()
      spawnDrops()
    end
    
    function uninit()
      self.quest:uninit()
      BGroup:uninit()
    end
    
    function offeredQuestStarted(questArc)
      if entity.damageTeam().type ~= "assistant" then
        storage.preQuestDamageTeam = entity.damageTeam()
        npc.setDamageTeam({
            type = "assistant",
            team = 1 -- Friendly NPCs always on team 1
          })
      end
    end
    
    function offeredQuestFinished(questArc, complete)
      if storage.preQuestDamageTeam then
        npc.setDamageTeam(storage.preQuestDamageTeam)
        storage.preQuestDamageTeam = nil
      end
    end
    
    -- Personality and reactions
    function personality()
      if not storage.personality then
        storage.personality = generatePersonality()
      end
      return storage.personality
    end
    
    function setPersonality(personality)
      storage.personality = personality
    end
    
    function personalityType()
      return personality().personality
    end
    
    function generatePersonality()
      return util.weightedRandom(config.getParameter("personalities"), npc.seed())
    end
    
    function participateInNewQuests()
      local enabled = config.getParameter("questGenerator.enableParticipation")
      return enabled and not self.quest:isQuestGiver()
    end
    
    function getHeldItems()
      local result = {}
      -- table.insert has no effect on the table when given a nil
      table.insert(result, self.primary)
      table.insert(result, self.sheathedPrimary)
      table.insert(result, self.alt)
      table.insert(result, self.sheathedAlt)
      return result
    end
    
    function setNpcItemSlot(slotName, item)
      npc.setItemSlot(slotName, item)
      storage.itemSlots = storage.itemSlots or {}
      storage.itemSlots[string.lower(slotName)] = item
    
      self.primary = npc.getItemSlot("primary")
      self.alt = npc.getItemSlot("alt")
      self.sheathedPrimary = npc.getItemSlot("sheathedprimary")
      self.sheathedAlt = npc.getItemSlot("sheathedalt")
    end
    
    function setItemSlotDelayed(slotName, item)
      table.insert(self.delayedSetItemSlot, {
          slotName = slotName,
          item = item
        })
    end
    
    function checkStuck()
      if mcontroller.isCollisionStuck() and not npc.isLounging() then
        -- sloppy catch-all correction for various cases of getting stuck in things
        -- due to bad spawn position, failure to exit loungeable (on ships), etc.
        local poly = mcontroller.collisionPoly()
        local pos = mcontroller.position()
        for maxDist = 2, 4 do
          local resolvePos = world.resolvePolyCollision(poly, pos, maxDist)
          if resolvePos then
            mcontroller.setPosition(resolvePos)
            break
          end
        end
      end
    end
    


    It looks like this snippet of code is what the issue is referring to;
    Code:
    self.uniqueId = config.getParameter("uniqueId")
      updateUniqueId()
    
    I don't know how to solve it, though. But I am just putting out a possibility.
     
  17. cpeosphoros

    cpeosphoros Orbital Explorer

    Error loading object '/objects/yourobject.object': (JsonException) Cannot convert from array to string

    Extra pair of brackets, like this:
    Code:
    [{ "op": "add", "path": "/path/-", "value":    [   "yourvalue"   ]    }]
    instead of this:
    Code:
    [{ "op": "add", "path": "/path/-", "value":     "yourvalue"     }]



    Error loading object '/objects/yourobject.object': (JsonException) Improper conversion to JsonArray from string

    Forgot to put /- at the end of the path, like this:
    Code:
    [{ "op": "add", "path": "/path", "value": "yourvalue" }]
    instead of this:
    Code:
    [{ "op": "add", "path": "/path/-", "value": "yourvalue" }]
     
  18. cpeosphoros

    cpeosphoros Orbital Explorer

    @SpazDiesFirst360.0

    It means a script called /achievements/event.lua is trying to call an unexistent function, named parseArgs. Lua errors don't crash the game, but they certainly will maim a mod's functioning.

    If you want I have a further look into it, please zip your mods folder (both Steam's and Starbound/mods, if you use both) and send me by PM. I can have a look and tell you which mod is causing that.
     
  19. cpeosphoros

    cpeosphoros Orbital Explorer

    So, could you please edit the stuck posts so they comply with white background? It's kinda annoying having to highlight things in order to be able to read them.

    Not trying to be obnoxious here, mind you, it's just that those posts are really great assets for both starter and experienced modders.

    Thank you
     
  20. zubarus

    zubarus Star Wrangler

    hiho

    i have a mod but all waht i become is this:

    [03:41:44.580] [Error] Application: exception thrown, shutting down: (ObjectException) Error loading object '/objects/scificraftingtable/scificraftingtable.object': (JsonException) Improper conversion to int from string


    waht can i do?
     
    Last edited: Aug 6, 2017

Share This Page