Jump to content

Recommended Posts

14 minutes ago, SuperDavid said:

Your modmain.lua is causing a crash for you, right? I think it's because when changing tunings in modmain.lua you can only use numerical values for the tuning edits you can't put stuff like 


--local total_day_time = seg_time*24 -- changed

instead


--local total_day_time = 24 -- changed

that should fix the crash, I think.

Oh... OH. So, I can't use seg_time, because it's a local variable of tuning.lua. Thanks...

Serpens, I'm really surprised you've overlooked this... But anyway, not trying to hold a grudge, I should be thankful I'm being helped anyway...

So, how do I get these local variables changed. Yes, I do need to change them, Serpens.

25 minutes ago, EuedeAdodooedoe said:

Oh... OH. So, I can't use seg_time, because it's a local variable of tuning.lua. Thanks...

Serpens, I'm really surprised you've overlooked this... But anyway, not trying to hold a grudge, I should be thankful I'm being helped anyway...

So, how do I get these local variables changed. Yes, I do need to change them, Serpens.

How can I overlook something, when you posted your code the first time now? are you serious ? :D
And if you change code in your modmain, also the error may change. Of course it can be the same message, but it can be a different line. So always put the corresponding error message to your code.
And if code is long, you can use "spoiler" here in forum to post it.

I already wrote you how to change SEG_TIME, what do you want to change, that is not in TUNING ?

edit:
okay I just saw that the local seg_time is used for calculating all the other values... So I think if you want to change set_time, than first change the TUNING.SEG_TIME and then all other tuning values that uses this local varibale and replace it by your new value.
 

Edited by Serpens
16 minutes ago, Serpens said:

How can I overlook something, when you posted your code the first time now? are you serious ? :D
And if you change code in your modmain, also the error may change. Of course it can be the same message, but it can be a different line. So always put the corresponding error message to your code.
And if code is long, you can use "spoiler" here in forum to post it.

I already wrote you how to change SEG_TIME, what do you want to change, that is not in TUNING ?

edit:
okay I just saw that the local seg_time is used for calculating all the other values... So I think if you want to change set_time, than first change the TUNING.SEG_TIME and then all other tuning values that uses this local varibale and replace it by your new value.
 

Okay. But how does this even work? You set a local variable to another variable and suddenly you can use it in another script file? Also wait a minute...

If, say seg_time = SEG_TIME then would I need to change this:

TUNING.SPIDERHAT_PERISHTIME = 40*seg_time

to this:

TUNING.SPIDERHAT_PERISHTIME = 40*SEG_TIME

Like I already said, all those big letter variables are "GLOBAL"s , cause they are in main.lua (maybe there is also another file listing those variables I don't know).  Normally you would have to make GLOBAL. in front of it, if you are in modmain. But TUNING is one of a few exceptions.
These globals are called that way, cause you can access them from everywhere. Therefore you can also change them everywhere. And that is how it works.

"SEG_TIME" is no variable, so your example does not work. SEG_TIME is a key from the TUNING table.
So if you want to access it, you have to write TUNING.SEG_TIME.

So if you want to change TUNING.SEG_TIME to 100, then your code would be:
 

TUNING.SEG_TIME = 100 -- before using it anywhere, you have to change the value, cause code is executed from top to bottom.

TUNING.ITEM_DROP_TIME = = TUNING.SEG_TIME 
TUNING.PIG_MIN_POOP_PERIOD = TUNING.SEG_TIME * .5
- ...

Now you could ask "why is it not that way in tuning.lua" ?
Because you can't access TUNING_SEG_TIME if you are in TUNING itself when it is created.
I mean, the table TUNING does not exist until it is defined in tuning.lua. And to define it, you can't use a value from TUNING itself.

But you can of course first define TUNING as an empty table and then add all the values step by step. Then it would also be possible to access all TUNING values that were already added. And that is also the way devs should have made this (sry bad english). But the devs did not have modding in mind all the time, so here and there they made modding more complicated than it should be...

Edited by Serpens
missed TUNING. in code

Okay, so the following is the current code:

Spoiler

 

TUNING.SEG_TIME = 60 -- changed
TUNING.TOTAL_DAY_TIME = TUNING.SEG_TIM*24 -- changed

TUNING.DAY_SEGS_DEFAULT = 14 -- changed
TUNING.DUSK_SEGS_DEFAULT = 6 -- changed
TUNING.NIGHT_SEGS_DEFAULT = 4 -- changed

TUNING.CALORIES_PER_DAY = 50 -- changed. Will change in the future when more new mechanics are put in place (e.g. losing hunger when doing certain actions)

TUNING.BALLOON_MAX_COUNT = 1000 -- changed

TUNING.BUGNET_USES = 50 -- changed
TUNING.WHIP_USES = 350 -- changed

TUNING.FISHINGROD_USES = 30 -- changed
TUNING.TRAP_USES = 10 -- changed
TUNING.BOOMERANG_USES = 50 -- changed

TUNING.ICESTAFF_USES = 50 -- changed
TUNING.FIRESTAFF_USES = 50 -- changed
TUNING.TELESTAFF_USES = 20 -- changed

TUNING.BATBAT_USES = 100 -- changed
TUNING.MULTITOOL_AXE_PICKAXE_USES = 2000 -- changed
TUNING.RUINS_BAT_USES = 500 -- changed
TUNING.SADDLEHORN_USES = 50 -- changed
TUNING.BRUSH_USES = 90 -- changed

TUNING.YELLOWSTAFF_USES = 50 -- changed

TUNING.ORANGEAMULET_USES = 675 -- changed
TUNING.ORANGEAMULET_RANGE = 4
TUNING.ORANGEAMULET_ICD = 0.05 -- changed
TUNING.ORANGESTAFF_USES = 50 -- changed

TUNING.GREENAMULET_USES = 20 -- changed
TUNING.GREENSTAFF_USES = 20 -- changed

TUNING.BEAVER_WOOD_DAMAGE = TUNING.WILSON_ATTACK*1 -- extra damage to wood things -- changed

TUNING.SADDLE_BASIC_USES = 10 -- changed
TUNING.SADDLE_WAR_USES = 16 -- changed
TUNING.SADDLE_RACE_USES = 16 -- changed

TUNING.MINOTAUR_DAMAGE = 100 * 2 -- changed
TUNING.MINOTAUR_HEALTH = 2500 * 2 -- harder for multiplayer -- changed

TUNING.SLURTLE_HEALTH = 200 -- changed

TUNING.LIGHTNING_DAMAGE = 10 * 5 -- changed

TUNING.LIGHTNING_GOAT_DAMAGE = 25 * 2 -- changed
TUNING.LIGHTNING_GOAT_HEALTH = 350 -- changed

TUNING.BUZZARD_HEALTH = 125 -- changed

TUNING.EVERGREEN_GROW_TIME =
        {
            {base=15*TUNING.DAY_TIME, random=5*TUNING.DAY_TIME},   --short -- changed
            {base=50*TUNING.DAY_TIME, random=20*TUNING.DAY_TIME},   --normal -- changed
            {base=50*TUNING.DAY_TIME, random=20*TUNING.DAY_TIME},   --tall -- changed
            {base=10*TUNING.DAY_TIME, random=5*TUNING.DAY_TIME}   --old -- changed
        }
TUNING.TWIGGY_TREE_GROW_TIME =
        {
            {base=15*TUNING.DAY_TIME, random=5*TUNING.DAY_TIME},   --short -- changed
            {base=30*TUNING.DAY_TIME, random=10*TUNING.DAY_TIME},   --normal -- changed
            {base=30*TUNING.DAY_TIME, random=10*TUNING.DAY_TIME},   --tall -- changed
            {base=50*TUNING.DAY_TIME, random=5*TUNING.DAY_TIME}   --old -- changed
        }
TUNING.PINECONE_GROWTIME = {base=7.5*TUNING.DAY_TIME, random=2.5*TUNING.DAY_TIME} -- changed
TUNING.EVERGREEN_CHOPS_SMALL = 15 -- changed
TUNING.EVERGREEN_CHOPS_NORMAL = 30 -- changed
TUNING.EVERGREEN_CHOPS_TALL = 45 -- changed

TUNING.DECIDUOUS_GROW_TIME =
        {
            {base=15*TUNING.DAY_TIME, random=5*TUNING.DAY_TIME},   --short -- changed
            {base=50*TUNING.DAY_TIME, random=20*TUNING.DAY_TIME},   --normal -- changed
            {base=50*TUNING.DAY_TIME, random=20*TUNING.DAY_TIME},   --tall -- changed
            {base=10*TUNING.DAY_TIMEe, random=5*TUNING.DAY_TIME}   --old -- changed
        }
TUNING.ACORN_GROWTIME = {base=7.5*TUNING.DAY_TIME, random=2.5*TUNING.DAY_TIME} -- changed
TUNING.DECIDUOUS_CHOPS_SMALL = 15 -- changed
TUNING.DECIDUOUS_CHOPS_NORMAL = 30 -- changed
TUNING.DECIDUOUS_CHOPS_TALL = 45 -- changed
TUNING.DECIDUOUS_CHOPS_MONSTER = 45 -- changed
    
TUNING.MUSHTREE_CHOPS_SMALL = 15 -- changed
TUNING.MUSHTREE_CHOPS_MEDIUM = 30 -- changed
TUNING.MUSHTREE_CHOPS_TALL = 45 -- changed

TUNING.ICE_MINE = 10 -- changed
TUNING.ROCKS_MINE = 60 -- changed
TUNING.ROCKS_MINE_MED = 40 -- changed
TUNING.ROCKS_MINE_LOW = 20 -- changed
TUNING.SPILAGMITE_SPAWNER = 20 -- changed
TUNING.SPILAGMITE_ROCK = 40 -- changed
TUNING.MARBLEPILLAR_MINE = 100 -- changed
TUNING.MARBLETREE_MINE = 80  -- changed

TUNING.PETRIFIED_TREE_SMALL = 20 -- changed
TUNING.PETRIFIED_TREE_NORMAL = 40 -- changed
TUNING.PETRIFIED_TREE_TALL = 60 -- changed
TUNING.PETRIFIED_TREE_OLD = 10 -- changed

TUNING.BEEFALO_HEALTH = 500 -- changed

TUNING.BEEFALO_DAMAGE = {
            DEFAULT = 75, -- changed
            RIDER = 60, -- changed
            ORNERY = 100, -- changed
            PUDGY = 50, -- changed
        }

TUNING.KOALEFANT_HEALTH = 500 -- changed

TUNING.BAT_DAMAGE = 40 -- changed

TUNING.SPIDER_WARRIOR_HEALTH = 200 -- changed
TUNING.SPIDER_WARRIOR_DAMAGE = 40 -- changed
TUNING.SPIDER_WARRIOR_ATTACK_PERIOD = 3 -- changed

TUNING.SPIDER_HIDER_HEALTH = 150 -- changed
TUNING.SPIDER_HIDER_DAMAGE = 40 -- changed

TUNING.SPIDER_SPITTER_HEALTH = 200 -- changed
TUNING.SPIDER_SPITTER_DAMAGE_MELEE = 40 -- changed
TUNING.SPIDER_SPITTER_DAMAGE_RANGED = 30 -- changed

TUNING.DEERCLOPS_HEALTH = 2000 * 3 -- harder for multiplayer -- changed
TUNING.DEERCLOPS_DAMAGE = 200 -- changed

TUNING.DEERCLOPS_ATTACK_PERIOD = 3 -- changed

TUNING.BEE_HEALTH = 50 -- changed (will be tweaked in the future however, due to different mob mechanics in the future for the bee)

TUNING.BEE_ATTACK_PERIOD = 1 -- changed
TUNING.BEE_TARGET_DIST = 3 -- changed
        
TUNING.BEEMINE_BEES = 12 -- changed

TUNING.BEEHIVE_BEES = 6 -- changed
TUNING.BEEHIVE_EMERGENCY_BEES = 6 -- changed

TUNING.BEEBOX_BEES = 6 -- changed
TUNING.WASPHIVE_WASPS = 6 -- changed
TUNING.WASPHIVE_EMERGENCY_WASPS = 6 -- changed

TUNING.WORM_DAMAGE = 120 -- changed

TUNING.WORM_HEALTH = 450 -- changed

TUNING.TENTACLE_DAMAGE = 51 -- changed

TUNING.TENTACLE_ATTACK_DIST = 3.9 -- changed

TUNING.TENTACLE_HEALTH = 300 -- changed

TUNING.EYEPLANT_DAMAGE = 40 -- changed

TUNING.TALLBIRD_HEALTH = 200 -- changed

TUNING.TEENBIRD_HEALTH = 200*.75 -- changed

TUNING.TEENBIRD_ATTACK_PERIOD = 3 -- changed
TUNING.TEENBIRD_ATTACK_RANGE = 2.5 -- changed

TUNING.SMALLBIRD_HEALTH = 34 -- changed

TUNING.SMALLBIRD_ATTACK_RANGE = 2 -- changed

TUNING.HATCH_UPDATE_PERIOD = 2 -- changed

TUNING.FROG_HEALTH = 34 -- changed

TUNING.HOUND_DAMAGE = 50 -- changed

TUNING.FIREHOUND_DAMAGE = 50 -- changed

TUNING.ICEHOUND_DAMAGE = 50 -- changed

TUNING.MOONHOUND_DAMAGE = 50 -- changed

TUNING.MOSQUITO_HEALTH = 50 -- changed (same thing as for bees)

TUNING.MOSQUITO_BURST_DAMAGE = 12 -- changed, might need to put some thought to this, however

TUNING.KRAMPUS_HEALTH = 150 -- changed
TUNING.KRAMPUS_DAMAGE = 75 -- changed

TUNING.TERRORBEAK_HEALTH = 150 -- changed
TUNING.TERRORBEAK_DAMAGE = 75 -- changed

TUNING.CRAWLINGHORROR_DAMAGE = 50 -- changed

TUNING.TREE_BURN_TIME = TUNING.SEG_TIME -- changed

TUNING.CAMPFIRE_FUEL_START = ((TUNING.NIGHT_TIME+TUNING.DUSK_TIME)*.75)+2 -- changed

TUNING.COLDFIRE_FUEL_START = ((TUNING.NIGHT_TIME+TUNING.DUSK_TIME)*.75)+2 -- changed

TUNING.SPIDERHAT_PERISHTIME = 40*TUNING.SEG_TIME -- changed (temporary change, will be changed to something else later)

TUNING.HEATROCK_NUMUSES = 100 -- changed (temporary change, will be changed to something else later)

TUNING.ARMORWOOD = TUNING.WILSON_HEALTH*5*TUNING.MULTIPLAYER_ARMOR_DURABILITY_MODIFIER -- changed

TUNING.ARMORMARBLE = TUNING.WILSON_HEALTH*24*TUNING.MULTIPLAYER_ARMOR_DURABILITY_MODIFIER -- changed

TUNING.ARMOR_RUINSHAT = TUNING.WILSON_HEALTH*15*TUNING.MULTIPLAYER_ARMOR_DURABILITY_MODIFIER -- changed

TUNING.ARMOR_RUINSHAT_PROC_CHANCE = 1 -- changed
TUNING.ARMOR_RUINSHAT_DURATION = 5 -- changed
TUNING.ARMOR_RUINSHAT_DMG_AS_SANITY = 0.01 -- changed

TUNING.ARMORSNURTLESHELL = TUNING.WILSON_HEALTH*12*TUNING.MULTIPLAYER_ARMOR_DURABILITY_MODIFIER -- changed
TUNING.ARMORMARBLE_SLOW = 0.8 -- changed

TUNING.ARMORRUINS = TUNING.WILSON_HEALTH * 24*TUNING.MULTIPLAYER_ARMOR_DURABILITY_MODIFIER -- changed

TUNING.ARMORSLURPER_SLOW_HUNGER = 0.8 -- changed

TUNING.ARMOR_SANITY = TUNING.WILSON_HEALTH *10*TUNING.MULTIPLAYER_ARMOR_DURABILITY_MODIFIER -- changed
TUNING.ARMOR_SANITY_DMG_AS_SANITY = 0.05 -- changed

TUNING.ARMOR_SLURTLEHAT = TUNING.WILSON_HEALTHh*12*TUNING.MULTIPLAYER_ARMOR_DURABILITY_MODIFIER -- changed
TUNING.ARMOR_SLURTLEHAT_ABSORPTION = 0.95*TUNING.MULTIPLAYER_ARMOR_DURABILITY_MODIFIER -- changed

TUNING.PANFLUTE_USES = 100 -- changed

TUNING.HORN_USES = 100 -- changed

TUNING.BEAVER_SANITY_PENALTY = -0.1 -- changed

TUNING.WOODIE_PLANT_TREE_GAIN = 1 -- changed

TUNING.HAYWALL_HEALTH = 200 -- changed
TUNING.WOODWALL_HEALTH = 800 -- changed
TUNING.STONEWALL_HEALTH = 2400 -- changed
TUNING.RUINSWALL_HEALTH = 4800 -- changed

TUNING.MOONROCKWALL_HEALTH = 4000 -- changed

TUNING.SANITY_GHOST_PLAYER_DRAIN = -100/(TUNING.NIGHT_TIME*3) -- changed, will be changed to something else later

TUNING.SEASON_LENGTH_FRIENDLY_DEFAULT = 90 -- changed
TUNING.SEASON_LENGTH_HARSH_DEFAULT = 90 -- changed

TUNING.SEASON_LENGTH_FRIENDLY_VERYSHORT = 30 -- changed
TUNING.SEASON_LENGTH_FRIENDLY_SHORT = 60 -- changed
TUNING.SEASON_LENGTH_FRIENDLY_LONG = 120 -- changed
TUNING.SEASON_LENGTH_FRIENDLY_VERYLONG = 150 -- changed
TUNING.SEASON_LENGTH_HARSH_VERYSHORT = 30 -- changed
TUNING.SEASON_LENGTH_HARSH_SHORT = 60 -- changed
TUNING.SEASON_LENGTH_HARSH_LONG = 120 -- changed
TUNING.SEASON_LENGTH_HARSH_VERYLONG = 150 -- changed

TUNING.DUSK_INSULATION_BONUS = TUNING.SEG_TIME -- changed due to other changes, making for a defect
TUNING.NIGHT_INSULATION_BONUS = TUNING.SEG_TIME*2 -- changed due to other changes, making for a defect

TUNING.MIN_TUMBLEWEEDS_PER_SPAWNER = 2 -- changed
TUNING.MAX_TUMBLEWEEDS_PER_SPAWNER = 4 -- changed

TUNING.ROCKY_ABSORB = 0.5 -- changed (srsly, Klei, beating a rocklobster with essentially a maximum of 60000 health? armour doesn't work like that with physics, at least not if it's like rock lobsters. For Snurltes/Slurtles it's different because you're beating their squishy parts while they're out of their shell. I think this was just a mistake in logic on your part.)

TUNING.ROCKY_REGEN_PERIOD = 10 -- changed. For real? 10 hp at a time, whilst hp is like 60000? harder than toadstool, like, for real, even rock walls aren't anywhere near that hard!
TUNING.ROCKYHERD_RANGE = 10 -- changed. Same thing as with beefalo -.-
TUNING.ROCKYHERD_MAX_IN_RANGE = 36 -- changed for sure

TUNING.MONKEY_MELEE_DAMAGE = 30 -- changed

TUNING.MOOSE_HEALTH = 3000 * 3 -- harder for multiplayer -- changed
TUNING.MOOSE_DAMAGE = 250 -- changed

--TUNING.TOADSTOOL_HEALTH = 52500, -- will be changed when a new attack and possibly some other features are introduced

TUNING.DRAGONFLY_HEALTH = 2750 * 3 -- changed
TUNING.DRAGONFLY_DAMAGE = 200 -- changed
TUNING.DRAGONFLY_ATTACK_PERIOD = 3 -- changed

TUNING.DRAGONFLY_HIT_RANGE = 4 -- changed

TUNING.DRAGONFLY_FIRE_ATTACK_PERIOD = 2 -- changed

TUNING.DRAGONFLY_FIRE_HIT_RANGE = 4 -- changed

TUNING.DRAGONFLY_ENRAGE_DURATION = 30 -- changed

TUNING.LAVAE_HEALTH = 100 -- changed

TUNING.LAVAE_LIFESPAN = 45 -- changed

TUNING.BEARGER_HEALTH = 3000 * 3 -- harder for multiplayer -- changed

TUNING.WX78_RAIN_HURT_RATE = 0.5 -- changed, will be different when some other mechanics are put in place. Also currently, at night it might be charlie's wrath or being wet and losing a bunch of hp :p
TUNING.WX78_MIN_MOISTURE_DAMAGE= -1 -- changed, will be different when some other mechanics are put in place
TUNING.WX78_MAX_MOISTURE_DAMAGE = -5 -- changed, will be different when some other mechanics are put in place
TUNING.WX78_MOISTURE_DRYING_DAMAGE = -3 -- changed, will be different when some other mechanics are put in place

TUNING.FIRE_DETECTOR_RANGE = 20 -- changed

TUNING.FIRESUPPRESSOR_MAX_FUEL_TIME = TUNING.TOTAL_DAY_TIME*10 -- changed

TUNING.WATERBALLOON_TEMP_REDUCTION = 15 -- changed

TUNING.NO_BOSS_TIME = 60  -- changed

TUNING.METEOR_DAMAGE = 500 -- changed >.>

TUNING.METEOR_CHANCE_BOULDERMOON = 1 -- changed
        
TUNING.METEOR_SHOWER_SPAWN_RADIUS = 45 -- changed

TUNING.MAX_PLAYER_SKELETONS = 24 -- changed

TUNING.HUTCH_DMG_PERIOD = 0.1 -- changed
TUNING.HUTCH_PRICKLY_DAMAGE = 34 -- changed

TUNING.SALTLICK_MAX_LICKS = 2400 -- 15 days @ 8 beefalo licks per day <= NO! This is NOT helping! 15 days means jack all on public servers! And ain't nobody got space or time to get and craft a whole bunch of these for a single beefalo just so they can take a vacation whilst other players progress the game by 500 days! Bakas! Changed. This amount of liks are a bit more real too. Period.

TUNING.SALTLICK_KOALEFANT_USES = 3 -- changed

 

And the game crashes with it, here's the logs:

Spoiler

[00:00:00]: PersistRootStorage is now APP:Klei//DoNotStarveTogether/ 
[00:00:00]: Starting Up
[00:00:00]: Version: 186853
[00:00:00]: Current time: Tue Aug 09 18:21:55 2016

[00:00:00]: Don't Starve Together: 186853 WIN32_STEAM
[00:00:00]: Build Date: 911
[00:00:00]: Parsing command line
[00:00:00]: Command Line Arguments: 
[00:00:00]: Initializing Minidump handler
[00:00:00]: ....Done
[00:00:00]: Initializing Steam
[00:00:01]: Steam AppBuildID: 1268910
[00:00:01]: Steam BetaName(Branch): []
[00:00:01]: ....Done
[00:00:01]: Fixing DPI
[00:00:01]: ...Done
[00:00:01]: THREAD - started 'GAClient' (120)
[00:00:01]: CurlRequestManager::ClientThread::Main()
[00:00:04]: ProfileIndex:4.07
[00:00:04]: [Connect] PendingConnection::Reset(true)
[00:00:04]: Network tick rate: U=15(2), D=0
[00:00:04]: Authorized application D:\Steam\steamapps\common\Don't Starve Together\bin\dontstarve_steam.exe is enabled in the firewall.
[00:00:04]: WindowsFirewall - Application already authorized
[00:00:04]: THREAD - started 'ConsoleInput' (3148)
[00:00:05]: loaded ping_cache
[00:00:05]: Offline user ID: OU_76561198124399357
[00:00:05]: SteamID: 76561198124399357
[00:00:05]: cGame::InitializeOnMainThread
[00:00:05]: WindowManager::Initialize
[00:00:05]: CreateWindow: Requesting 1280,961 - 5/6/5 - -1/-1/-1 - 0
[00:00:05]: CreateEGLContext: 16 configs found
[00:00:05]:      0: 8/8/8 -  0/ 0/ 0 - 0
[00:00:05]:      1: 8/8/8 -  0/16/ 0 - 0
[00:00:05]:      2: 8/8/8 -  0/24/ 0 - 0
[00:00:05]:      3: 8/8/8 -  0/24/ 8 - 0
[00:00:05]:      4: 5/5/5 -  0/ 0/ 0 - 0
[00:00:05]:      5: 5/5/5 -  1/ 0/ 0 - 0
[00:00:05]:      6: 5/5/5 -  0/16/ 0 - 0
[00:00:05]:      7: 5/5/5 -  1/16/ 0 - 0
[00:00:05]:      8: 5/5/5 -  0/24/ 0 - 0
[00:00:05]:      9: 5/5/5 -  1/24/ 0 - 0
[00:00:05]:     10: 5/5/5 -  0/24/ 8 - 0
[00:00:05]:     11: 5/5/5 -  1/24/ 8 - 0
[00:00:05]:     12: 8/8/8 -  8/ 0/ 0 - 0
[00:00:05]:     13: 8/8/8 -  8/16/ 0 - 0
[00:00:05]:     14: 8/8/8 -  8/24/ 0 - 0
[00:00:05]:     15: 8/8/8 -  8/24/ 8 - 0
[00:00:05]: RestoreWindowPosition
[00:00:05]:    Saved Client Pos (0 x 23)
[00:00:05]:    Adjusted Window Pos (-8 x -8)
[00:00:05]: EnsureWindowOnScreen
[00:00:05]:    All good.
[00:00:05]: GLInfo
[00:00:05]: ~~~~~~
[00:00:05]: THREAD - started 'WindowsInputManager' (5100)
[00:00:05]: GL_VENDOR: Google Inc.
[00:00:05]: GL_RENDERER: ANGLE (Intel(R) HD Graphics 4600)
[00:00:05]: GL_VERSION: OpenGL ES 2.0 (ANGLE 1.0.0.2249)
[00:00:05]: GL_SHADING_LANGUAGE_VERSION: OpenGL ES GLSL ES 1.00 (ANGLE 1.0.0.2249)
[00:00:05]: OpenGL extensions (19, 19):
[00:00:05]: GL_ANGLE_depth_texture
[00:00:05]: GL_ANGLE_framebuffer_blit
[00:00:05]: GL_ANGLE_framebuffer_multisample
[00:00:05]: GL_ANGLE_instanced_arrays
[00:00:05]: GL_ANGLE_pack_reverse_row_order
[00:00:05]: GL_ANGLE_texture_compression_dxt3
[00:00:05]: GL_ANGLE_texture_compression_dxt5
[00:00:05]: GL_ANGLE_texture_usage
[00:00:05]: GL_ANGLE_translated_shader_source
[00:00:05]: GL_EXT_read_format_bgra
[00:00:05]: GL_EXT_robustness
[00:00:05]: GL_EXT_texture_compression_dxt1
[00:00:05]: GL_EXT_texture_format_BGRA8888
[00:00:05]: GL_EXT_texture_storage
[00:00:05]: GL_OES_get_program_binary
[00:00:05]: GL_OES_packed_depth_stencil
[00:00:05]: GL_OES_rgb8_rgba8
[00:00:05]: GL_OES_standard_derivatives
[00:00:05]: GL_OES_texture_npot
[00:00:05]: GL_MAX_TEXTURE_SIZE = 8192
[00:00:05]: GL_MAX_TEXTURE_IMAGE_UNITS = 16
[00:00:05]: GL_MAX_RENDERBUFFER_SIZE = 8192
[00:00:05]: GL_MAX_VIEWPORT_DIMS = 8192, 8192
[00:00:05]: GL_MAX_VARYING_VECTORS = 10
[00:00:05]: GL_MAX_VERTEX_ATTRIBS = 16
[00:00:05]: GL_MAX_VERTEX_UNIFORM_VECTORS = 254
[00:00:05]: GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS = 4
[00:00:05]: GL_MAX_FRAGMENT_UNIFORM_VECTORS = 221
[00:00:05]: 4 compressed texture formats
[00:00:05]: texture format 0x83f0
[00:00:05]: texture format 0x83f1
[00:00:05]: texture format 0x83f2
[00:00:05]: texture format 0x83f3
[00:00:05]: Renderer initialize: Okay
[00:00:05]: AnimManager initialize: Okay
[00:00:06]: Buffers initialize: Okay
[00:00:06]: cDontStarveGame::DoGameSpecificInitialize()
[00:00:06]: GameSpecific initialize: Okay
[00:00:06]: cGame::StartPlaying
[00:00:06]: LOADING LUA
[00:00:06]: DoLuaFile scripts/main.lua
[00:00:06]: DoLuaFile loading buffer scripts/main.lua
[00:00:07]: running main.lua
    
[00:00:07]: loaded modindex    
[00:00:08]: ModIndex: Beginning normal load sequence.
    
[00:00:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-344071294    
[00:00:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-345692228    
[00:00:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-351325790    
[00:00:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-362906105    
[00:00:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-365119238    
[00:00:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-367593872    
[00:00:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:00:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-394612159    
[00:00:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-522023088    
[00:00:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-539957958    
[00:00:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-609051112    
[00:00:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-661284815    
[00:00:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-672584952    
[00:00:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-694531911    
[00:00:08]: Could not load mod_config_data/modconfiguration_workshop-344071294    
[00:00:08]: Loading mod: workshop-344071294 (Quick Emotes) Version:1.7    
[00:00:08]: loaded mod_config_data/modconfiguration_workshop-345692228    
[00:00:08]: Loading mod: workshop-345692228 (Minimap HUD) Version:1.0.7    
[00:00:08]: loaded mod_config_data/modconfiguration_workshop-351325790    
[00:00:08]: Loading mod: workshop-351325790 (Geometric Placement) Version:2.1.1    
[00:00:08]: Could not load mod_config_data/modconfiguration_workshop-362906105    
[00:00:08]: Loading mod: workshop-362906105 (Sticky Recipe) Version:1.1.2    
[00:00:08]: Could not load mod_config_data/modconfiguration_workshop-365119238    
[00:00:08]: Loading mod: workshop-365119238 (SmartCrockPot) Version:4.02    
[00:00:08]: Could not load mod_config_data/modconfiguration_workshop-367593872    
[00:00:08]: Loading mod: workshop-367593872 (No More Lag) Version:1.1.2    
[00:00:08]: Could not load mod_config_data/modconfiguration_workshop-376333686    
[00:00:08]: Loading mod: workshop-376333686 (Combined Status) Version:1.6.6    
[00:00:08]: Could not load mod_config_data/modconfiguration_workshop-394612159    
[00:00:08]: Loading mod: workshop-394612159 (Auto ReTrap) Version:1.02    
[00:00:08]: Could not load mod_config_data/modconfiguration_workshop-522023088    
[00:00:08]: Loading mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT]) Version:1.2.4    
[00:00:08]: Could not load mod_config_data/modconfiguration_workshop-539957958    
[00:00:08]: Loading mod: workshop-539957958 (Persistent Compass HUD) Version:0.1    
[00:00:08]: Could not load mod_config_data/modconfiguration_workshop-609051112    
[00:00:08]: Loading mod: workshop-609051112 (Action Queue(DST)) Version:1.2.6    
[00:00:08]: Could not load mod_config_data/modconfiguration_workshop-661284815    
[00:00:08]: Loading mod: workshop-661284815 (Improved Force Attack) Version:0.5    
[00:00:08]: loaded mod_config_data/modconfiguration_workshop-672584952    
[00:00:08]: Loading mod: workshop-672584952 ([Updated] Complete Your Map) Version:4.32c    
[00:00:08]: loaded mod_config_data/modconfiguration_workshop-694531911    
[00:00:08]: Loading mod: workshop-694531911 ( [DST]Aerial view) Version:1.1.2    
[00:00:08]: Mod: workshop-365119238 (SmartCrockPot)    Loading modworldgenmain.lua    
[00:00:08]: Mod: workshop-365119238 (SmartCrockPot)      Mod had no modworldgenmain.lua. Skipping.    
[00:00:08]: Mod: workshop-365119238 (SmartCrockPot)    Loading modmain.lua    
[00:00:08]: modimport: ../mods/workshop-365119238/modmain_segments/containerwidgetfunction.lua    
[00:00:08]: modimport: ../mods/workshop-365119238/modmain_segments/containers_setup.lua    
[00:00:08]: modimport: ../mods/workshop-365119238/modmain_segments/action_predict.lua    
[00:00:08]: WARNING: Positional Action parameters are deprecated. Please pass action a table instead.    
[00:00:08]: Action defined at     ../mods/workshop-365119238/modmain_segments/action_predict.lua:1 in (local) result (main) <0-0>    
[00:00:08]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Loading modworldgenmain.lua    
[00:00:08]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Mod had no modworldgenmain.lua. Skipping.    
[00:00:08]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Loading modmain.lua    
[00:00:08]: Mod: workshop-362906105 (Sticky Recipe)    Loading modworldgenmain.lua    
[00:00:08]: Mod: workshop-362906105 (Sticky Recipe)      Mod had no modworldgenmain.lua. Skipping.    
[00:00:08]: Mod: workshop-362906105 (Sticky Recipe)    Loading modmain.lua    
[00:00:09]: Mod: workshop-344071294 (Quick Emotes)    Loading modworldgenmain.lua    
[00:00:09]: Mod: workshop-344071294 (Quick Emotes)      Mod had no modworldgenmain.lua. Skipping.    
[00:00:09]: Mod: workshop-344071294 (Quick Emotes)    Loading modmain.lua    
[00:00:09]: Mod: workshop-539957958 (Persistent Compass HUD)    Loading modworldgenmain.lua    
[00:00:09]: Mod: workshop-539957958 (Persistent Compass HUD)      Mod had no modworldgenmain.lua. Skipping.    
[00:00:09]: Mod: workshop-539957958 (Persistent Compass HUD)    Loading modmain.lua    
[00:00:09]: Mod: workshop-367593872 (No More Lag)    Loading modworldgenmain.lua    
[00:00:09]: Mod: workshop-367593872 (No More Lag)      Mod had no modworldgenmain.lua. Skipping.    
[00:00:09]: Mod: workshop-367593872 (No More Lag)    Loading modmain.lua    
[00:00:09]: Mod: workshop-345692228 (Minimap HUD)    Loading modworldgenmain.lua    
[00:00:09]: Mod: workshop-345692228 (Minimap HUD)      Mod had no modworldgenmain.lua. Skipping.    
[00:00:09]: Mod: workshop-345692228 (Minimap HUD)    Loading modmain.lua    
[00:00:09]: Mod: workshop-661284815 (Improved Force Attack)    Loading modworldgenmain.lua    
[00:00:09]: Mod: workshop-661284815 (Improved Force Attack)      Mod had no modworldgenmain.lua. Skipping.    
[00:00:09]: Mod: workshop-661284815 (Improved Force Attack)    Loading modmain.lua    
[00:00:09]: Mod: workshop-376333686 (Combined Status)    Loading modworldgenmain.lua    
[00:00:09]: Mod: workshop-376333686 (Combined Status)      Mod had no modworldgenmain.lua. Skipping.    
[00:00:09]: Mod: workshop-376333686 (Combined Status)    Loading modmain.lua    
[00:00:09]: ModIndex:GetModsToLoad inserting moddir,     workshop-344071294    
[00:00:09]: ModIndex:GetModsToLoad inserting moddir,     workshop-345692228    
[00:00:09]: ModIndex:GetModsToLoad inserting moddir,     workshop-351325790    
[00:00:09]: ModIndex:GetModsToLoad inserting moddir,     workshop-362906105    
[00:00:09]: ModIndex:GetModsToLoad inserting moddir,     workshop-365119238    
[00:00:09]: ModIndex:GetModsToLoad inserting moddir,     workshop-367593872    
[00:00:09]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:00:09]: ModIndex:GetModsToLoad inserting moddir,     workshop-394612159    
[00:00:09]: ModIndex:GetModsToLoad inserting moddir,     workshop-522023088    
[00:00:09]: ModIndex:GetModsToLoad inserting moddir,     workshop-539957958    
[00:00:09]: ModIndex:GetModsToLoad inserting moddir,     workshop-609051112    
[00:00:09]: ModIndex:GetModsToLoad inserting moddir,     workshop-661284815    
[00:00:09]: ModIndex:GetModsToLoad inserting moddir,     workshop-672584952    
[00:00:09]: ModIndex:GetModsToLoad inserting moddir,     workshop-694531911    
[00:00:09]: Mod: workshop-394612159 (Auto ReTrap)    Loading modworldgenmain.lua    
[00:00:09]: Mod: workshop-394612159 (Auto ReTrap)      Mod had no modworldgenmain.lua. Skipping.    
[00:00:09]: Mod: workshop-394612159 (Auto ReTrap)    Loading modmain.lua    
[00:00:09]: Mod: workshop-609051112 (Action Queue(DST))    Loading modworldgenmain.lua    
[00:00:09]: Mod: workshop-609051112 (Action Queue(DST))      Mod had no modworldgenmain.lua. Skipping.    
[00:00:09]: Mod: workshop-609051112 (Action Queue(DST))    Loading modmain.lua    
[00:00:09]: Mod: workshop-694531911 ( [DST]Aerial view)    Loading modworldgenmain.lua    
[00:00:09]: Mod: workshop-694531911 ( [DST]Aerial view)      Mod had no modworldgenmain.lua. Skipping.    
[00:00:09]: Mod: workshop-694531911 ( [DST]Aerial view)    Loading modmain.lua    
[00:00:09]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Loading modworldgenmain.lua    
[00:00:09]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Mod had no modworldgenmain.lua. Skipping.    
[00:00:09]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Loading modmain.lua    
[00:00:09]: Client Version Running    
[00:00:09]: Mod: workshop-351325790 (Geometric Placement)    Loading modworldgenmain.lua    
[00:00:09]: Mod: workshop-351325790 (Geometric Placement)      Mod had no modworldgenmain.lua. Skipping.    
[00:00:09]: Mod: workshop-351325790 (Geometric Placement)    Loading modmain.lua    
[00:00:14]: LOADING LUA SUCCESS
[00:00:16]: PlayerDeaths loaded morgue    2056    
[00:00:16]: PlayerHistory loaded player_history    11647    
[00:00:16]: bloom_enabled    false    
[00:00:16]: loaded saveindex    
[00:00:16]: OnFilesLoaded()    
[00:00:16]: OnUpdatePurchaseStateComplete    
[00:00:33]: Mod: workshop-365119238 (SmartCrockPot)    Registering prefabs    
[00:00:33]: Mod: workshop-365119238 (SmartCrockPot)      Registering default mod prefab    
[00:00:33]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Registering prefabs    
[00:00:33]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Registering prefab file: prefabs/mapiconhelper    
[00:00:33]: Mod: workshop-672584952 ([Updated] Complete Your Map)        mapiconhelper    
[00:00:33]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Registering default mod prefab    
[00:00:33]: Mod: workshop-362906105 (Sticky Recipe)    Registering prefabs    
[00:00:33]: Mod: workshop-362906105 (Sticky Recipe)      Registering default mod prefab    
[00:00:33]: Mod: workshop-344071294 (Quick Emotes)    Registering prefabs    
[00:00:33]: Mod: workshop-344071294 (Quick Emotes)      Registering default mod prefab    
[00:00:33]: Mod: workshop-539957958 (Persistent Compass HUD)    Registering prefabs    
[00:00:33]: Mod: workshop-539957958 (Persistent Compass HUD)      Registering default mod prefab    
[00:00:33]: Mod: workshop-367593872 (No More Lag)    Registering prefabs    
[00:00:33]: Mod: workshop-367593872 (No More Lag)      Registering default mod prefab    
[00:00:33]: Mod: workshop-345692228 (Minimap HUD)    Registering prefabs    
[00:00:33]: Mod: workshop-345692228 (Minimap HUD)      Registering default mod prefab    
[00:00:33]: Mod: workshop-661284815 (Improved Force Attack)    Registering prefabs    
[00:00:33]: Mod: workshop-661284815 (Improved Force Attack)      Registering default mod prefab    
[00:00:33]: Mod: workshop-376333686 (Combined Status)    Registering prefabs    
[00:00:33]: Mod: workshop-376333686 (Combined Status)      Registering default mod prefab    
[00:00:33]: Mod: workshop-394612159 (Auto ReTrap)    Registering prefabs    
[00:00:33]: Mod: workshop-394612159 (Auto ReTrap)      Registering default mod prefab    
[00:00:33]: Mod: workshop-609051112 (Action Queue(DST))    Registering prefabs    
[00:00:33]: Mod: workshop-609051112 (Action Queue(DST))      Registering default mod prefab    
[00:00:33]: Mod: workshop-694531911 ( [DST]Aerial view)    Registering prefabs    
[00:00:33]: Mod: workshop-694531911 ( [DST]Aerial view)      Registering default mod prefab    
[00:00:33]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Registering prefabs    
[00:00:33]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Registering prefab file: prefabs/range    
[00:00:33]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])        range_indicator_client    
[00:00:33]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Registering default mod prefab    
[00:00:33]: Mod: workshop-351325790 (Geometric Placement)    Registering prefabs    
[00:00:33]: Mod: workshop-351325790 (Geometric Placement)      Registering prefab file: prefabs/buildgridplacer    
[00:00:33]: Mod: workshop-351325790 (Geometric Placement)        buildgridplacer    
[00:00:33]: Mod: workshop-351325790 (Geometric Placement)      Registering default mod prefab    
[00:00:34]:     Load FE    
[00:00:35]:     Load FE: done    
[00:00:35]: OnLoadPermissionList: APP:Klei//DoNotStarveTogether/client_save/blocklist.txt (Success)
[00:00:35]: OnLoadPermissionList: APP:Klei//DoNotStarveTogether/client_save/adminlist.txt (Failure)
[00:00:35]: OnLoadUserIdList: APP:Klei//DoNotStarveTogether/client_save/whitelist.txt (Failure)
[00:00:35]: SimLuaProxy::QueryServer()
[00:00:35]: ModIndex: Load sequence finished successfully.    
[00:00:35]: Reset() returning
[00:00:39]: [Steam] Auth Session Ticket requested...
[00:00:40]: [Steam] Got Auth Session Ticket
[00:00:41]: [200] Account Communication Success (3)
[00:00:41]: loaded inventory_cache
[00:00:41]: Logging in as KU_bPVGW5kg
[00:00:42]: saved inventory_cache
[00:00:42]: saved inventory_cache_sig
[00:00:43]: SimLuaProxy::QueryServer()
[00:00:44]:    EResult 15, 367082522
[00:00:44]: Failed getting mod details.
[00:00:45]: Getting display mode: Querying display 1 [of 1]
[00:00:45]:     \: 1280, 1024, 60
[00:00:46]:    EResult 15, 373991022
[00:00:46]: Failed getting mod details.
[00:00:46]:    EResult 15, 380094901
[00:00:46]: Failed getting mod details.
[00:00:50]:    EResult 15, 426856213
[00:00:50]: Failed getting mod details.
[00:00:51]:    EResult 15, 394470072
[00:00:51]: Failed getting mod details.
[00:01:05]: DownloadPublishedFileV2()
[00:01:05]: Did not find the ugc handle in the cache. This is likely because you're subscribed to a non-existent file 367082522
[00:01:05]: DownloadPublishedFileV2()
[00:01:05]: Did not find the ugc handle in the cache. This is likely because you're subscribed to a non-existent file 373991022
[00:01:05]: DownloadPublishedFileV2()
[00:01:05]: Did not find the ugc handle in the cache. This is likely because you're subscribed to a non-existent file 380094901
[00:01:05]: DownloadPublishedFileV2()
[00:01:05]: Did not find the ugc handle in the cache. This is likely because you're subscribed to a non-existent file 426856213
[00:01:05]: DownloadPublishedFileV2()
[00:01:05]: Did not find the ugc handle in the cache. This is likely because you're subscribed to a non-existent file 394470072
[00:01:38]:    EResult 15, 367082522
[00:01:38]: Failed getting mod details.
[00:01:39]:    EResult 15, 373991022
[00:01:39]: Failed getting mod details.
[00:01:40]:    EResult 15, 380094901
[00:01:40]: Failed getting mod details.
[00:01:43]: Friends are currently playing in 3 games(s)!
[00:01:43]: You belong to 3 clan(s)!
[00:01:43]: SteamWorkshop::CancelDownloads clearing all unfinished downloads
[00:01:43]: Downloaded server listings - full: 2580 filtered: 1608
[00:03:39]: [Connect] Got new join server request from lua
[00:03:39]: [Connect] Init client connection to (S) <16915548013395816059>
[00:03:39]: [Connect] PendingConnection::Reset(true)
[00:03:39]: SteamWorkshop::CancelDownloads clearing all unfinished downloads
[00:03:39]: [Connect] InternalInitClient <6475709902258878166>
[00:03:39]: [Shard] Starting shard mode as player
[00:03:39]: [Connect] Starting online connection to 86.89.118.65|11000
[00:03:39]: [Connect] Server name: THE BEST SERVER IN THE WORLD
[00:03:40]: [200] Account Communication Success (13)
[00:03:40]: [Connect] Sending ping(s)...
[00:03:40]: [Connect] Ping 86.89.118.65|11000
[00:03:40]: [Connect] Ping response from 86.89.118.65|11000
[00:03:40]: [Connect] Joining server from ping response (silent)...
[00:03:40]: [Connect] PendingConnectionDoConnect to 86.89.118.65|11000
[00:03:40]: [Connect] DirectConnect to 86.89.118.65|11000
[00:03:40]: Connection accepted to 86.89.118.65|11000 <16915548013395816059>
[00:03:40]: Network external address discovered: 86.25.97.9|55444
[00:03:40]: SendClientHandShakePacket "re^eyJVc2VySUQiOiJLVV9iUFZHVzVrZyIsIkdhbWUiOiJEb250U3RhcnZlVG9nZXRoZXIiLCJQdXJwb3NlIjoiR2FtZVNlc3Npb24ifQ==^b2YL0dykoiU9XODcf43OiJ0zu1XEvPev" to <16915548013395816059>
[00:03:41]: DeserializeHandShakeServerListing
[00:03:41]: Network tick rate: U=10(3), D=15
[00:03:41]: Version: 186853
[00:03:41]: [Steam] Game Connection initiated
[00:03:41]: SendClientInventoryHandShakePacket to <16915548013395816059>
[00:03:42]: Begin Session: 90E621F09490DBD1
[00:03:42]: Done Downloading Client Object Data
[00:03:42]: DownloadMods and temp disable    
[00:03:42]: Downloading [0] From: server_temp
[00:03:42]: 0 (40%) 1/1 server_temp/server_save 114000b / 283287b
[00:03:42]: 0 (80%) 1/1 server_temp/server_save 228000b / 283287b
[00:03:42]: 0 (100%) 1/1 server_temp/server_save 283287b / 283287b
[00:03:42]: Download complete[0] Files: 1 Size: 283287
[00:03:44]: unloading prefabs for mod MOD_workshop-365119238    
[00:03:44]: unloading prefabs for mod MOD_workshop-672584952    
[00:03:44]: unloading prefabs for mod MOD_workshop-362906105    
[00:03:44]: unloading prefabs for mod MOD_workshop-344071294    
[00:03:44]: unloading prefabs for mod MOD_workshop-539957958    
[00:03:44]: unloading prefabs for mod MOD_workshop-367593872    
[00:03:44]: unloading prefabs for mod MOD_workshop-345692228    
[00:03:44]: unloading prefabs for mod MOD_workshop-661284815    
[00:03:44]: unloading prefabs for mod MOD_workshop-376333686    
[00:03:44]: unloading prefabs for mod MOD_workshop-394612159    
[00:03:44]: unloading prefabs for mod MOD_workshop-609051112    
[00:03:44]: unloading prefabs for mod MOD_workshop-694531911    
[00:03:44]: unloading prefabs for mod MOD_workshop-522023088    
[00:03:44]: unloading prefabs for mod MOD_workshop-351325790    
[00:03:44]: Collecting garbage...
[00:03:44]: lua_gc took 0.03 seconds
[00:03:44]: ~ShardLuaProxy()
[00:03:44]: ~ItemServerLuaProxy()
[00:03:44]: ~InventoryLuaProxy()
[00:03:44]: ~NetworkLuaProxy()
[00:03:44]: ~SimLuaProxy()
[00:03:44]: SteamWorkshop::CancelDownloads clearing all unfinished downloads
[00:03:44]: lua_close took 0.03 seconds
[00:03:44]: ReleaseAll
[00:03:44]: ReleaseAll Finished
[00:03:44]: cGame::StartPlaying
[00:03:44]: LOADING LUA
[00:03:44]: DoLuaFile scripts/main.lua
[00:03:44]: DoLuaFile loading buffer scripts/main.lua
[00:03:44]: running main.lua
    
[00:03:44]: loaded modindex    
[00:03:44]: ModIndex: Beginning normal load sequence.
    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-344071294    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-345692228    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-351325790    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-362906105    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-365119238    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-367593872    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-394612159    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-522023088    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-539957958    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-609051112    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-661284815    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-672584952    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-694531911    
[00:03:44]: Could not load mod_config_data/modconfiguration_workshop-344071294    
[00:03:44]: Loading mod: workshop-344071294 (Quick Emotes) Version:1.7    
[00:03:44]: loaded mod_config_data/modconfiguration_workshop-345692228    
[00:03:44]: Loading mod: workshop-345692228 (Minimap HUD) Version:1.0.7    
[00:03:44]: loaded mod_config_data/modconfiguration_workshop-351325790    
[00:03:44]: Loading mod: workshop-351325790 (Geometric Placement) Version:2.1.1    
[00:03:44]: Could not load mod_config_data/modconfiguration_workshop-362906105    
[00:03:44]: Loading mod: workshop-362906105 (Sticky Recipe) Version:1.1.2    
[00:03:44]: Could not load mod_config_data/modconfiguration_workshop-365119238    
[00:03:44]: Loading mod: workshop-365119238 (SmartCrockPot) Version:4.02    
[00:03:44]: Could not load mod_config_data/modconfiguration_workshop-367593872    
[00:03:44]: Loading mod: workshop-367593872 (No More Lag) Version:1.1.2    
[00:03:44]: Could not load mod_config_data/modconfiguration_workshop-376333686    
[00:03:44]: Loading mod: workshop-376333686 (Combined Status) Version:1.6.6    
[00:03:44]: Could not load mod_config_data/modconfiguration_workshop-394612159    
[00:03:44]: Loading mod: workshop-394612159 (Auto ReTrap) Version:1.02    
[00:03:44]: Could not load mod_config_data/modconfiguration_workshop-522023088    
[00:03:44]: Loading mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT]) Version:1.2.4    
[00:03:44]: Could not load mod_config_data/modconfiguration_workshop-539957958    
[00:03:44]: Loading mod: workshop-539957958 (Persistent Compass HUD) Version:0.1    
[00:03:44]: Could not load mod_config_data/modconfiguration_workshop-609051112    
[00:03:44]: Loading mod: workshop-609051112 (Action Queue(DST)) Version:1.2.6    
[00:03:44]: Could not load mod_config_data/modconfiguration_workshop-661284815    
[00:03:44]: Loading mod: workshop-661284815 (Improved Force Attack) Version:0.5    
[00:03:44]: loaded mod_config_data/modconfiguration_workshop-672584952    
[00:03:44]: Loading mod: workshop-672584952 ([Updated] Complete Your Map) Version:4.32c    
[00:03:44]: loaded mod_config_data/modconfiguration_workshop-694531911    
[00:03:44]: Loading mod: workshop-694531911 ( [DST]Aerial view) Version:1.1.2    
[00:03:44]: Mod: workshop-365119238 (SmartCrockPot)    Loading modworldgenmain.lua    
[00:03:44]: Mod: workshop-365119238 (SmartCrockPot)      Mod had no modworldgenmain.lua. Skipping.    
[00:03:44]: Mod: workshop-365119238 (SmartCrockPot)    Loading modmain.lua    
[00:03:44]: modimport: ../mods/workshop-365119238/modmain_segments/containerwidgetfunction.lua    
[00:03:44]: modimport: ../mods/workshop-365119238/modmain_segments/containers_setup.lua    
[00:03:44]: modimport: ../mods/workshop-365119238/modmain_segments/action_predict.lua    
[00:03:44]: WARNING: Positional Action parameters are deprecated. Please pass action a table instead.    
[00:03:44]: Action defined at     ../mods/workshop-365119238/modmain_segments/action_predict.lua:1 in (local) result (main) <0-0>    
[00:03:44]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Loading modworldgenmain.lua    
[00:03:44]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Mod had no modworldgenmain.lua. Skipping.    
[00:03:44]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Loading modmain.lua    
[00:03:44]: Mod: workshop-362906105 (Sticky Recipe)    Loading modworldgenmain.lua    
[00:03:44]: Mod: workshop-362906105 (Sticky Recipe)      Mod had no modworldgenmain.lua. Skipping.    
[00:03:44]: Mod: workshop-362906105 (Sticky Recipe)    Loading modmain.lua    
[00:03:44]: Mod: workshop-344071294 (Quick Emotes)    Loading modworldgenmain.lua    
[00:03:44]: Mod: workshop-344071294 (Quick Emotes)      Mod had no modworldgenmain.lua. Skipping.    
[00:03:44]: Mod: workshop-344071294 (Quick Emotes)    Loading modmain.lua    
[00:03:44]: Mod: workshop-539957958 (Persistent Compass HUD)    Loading modworldgenmain.lua    
[00:03:44]: Mod: workshop-539957958 (Persistent Compass HUD)      Mod had no modworldgenmain.lua. Skipping.    
[00:03:44]: Mod: workshop-539957958 (Persistent Compass HUD)    Loading modmain.lua    
[00:03:44]: Mod: workshop-367593872 (No More Lag)    Loading modworldgenmain.lua    
[00:03:44]: Mod: workshop-367593872 (No More Lag)      Mod had no modworldgenmain.lua. Skipping.    
[00:03:44]: Mod: workshop-367593872 (No More Lag)    Loading modmain.lua    
[00:03:44]: Mod: workshop-345692228 (Minimap HUD)    Loading modworldgenmain.lua    
[00:03:44]: Mod: workshop-345692228 (Minimap HUD)      Mod had no modworldgenmain.lua. Skipping.    
[00:03:44]: Mod: workshop-345692228 (Minimap HUD)    Loading modmain.lua    
[00:03:44]: Mod: workshop-661284815 (Improved Force Attack)    Loading modworldgenmain.lua    
[00:03:44]: Mod: workshop-661284815 (Improved Force Attack)      Mod had no modworldgenmain.lua. Skipping.    
[00:03:44]: Mod: workshop-661284815 (Improved Force Attack)    Loading modmain.lua    
[00:03:44]: Mod: workshop-376333686 (Combined Status)    Loading modworldgenmain.lua    
[00:03:44]: Mod: workshop-376333686 (Combined Status)      Mod had no modworldgenmain.lua. Skipping.    
[00:03:44]: Mod: workshop-376333686 (Combined Status)    Loading modmain.lua    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-344071294    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-345692228    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-351325790    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-362906105    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-365119238    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-367593872    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-394612159    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-522023088    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-539957958    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-609051112    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-661284815    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-672584952    
[00:03:44]: ModIndex:GetModsToLoad inserting moddir,     workshop-694531911    
[00:03:44]: Mod: workshop-394612159 (Auto ReTrap)    Loading modworldgenmain.lua    
[00:03:44]: Mod: workshop-394612159 (Auto ReTrap)      Mod had no modworldgenmain.lua. Skipping.    
[00:03:44]: Mod: workshop-394612159 (Auto ReTrap)    Loading modmain.lua    
[00:03:44]: Mod: workshop-609051112 (Action Queue(DST))    Loading modworldgenmain.lua    
[00:03:44]: Mod: workshop-609051112 (Action Queue(DST))      Mod had no modworldgenmain.lua. Skipping.    
[00:03:44]: Mod: workshop-609051112 (Action Queue(DST))    Loading modmain.lua    
[00:03:44]: Mod: workshop-694531911 ( [DST]Aerial view)    Loading modworldgenmain.lua    
[00:03:44]: Mod: workshop-694531911 ( [DST]Aerial view)      Mod had no modworldgenmain.lua. Skipping.    
[00:03:44]: Mod: workshop-694531911 ( [DST]Aerial view)    Loading modmain.lua    
[00:03:44]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Loading modworldgenmain.lua    
[00:03:44]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Mod had no modworldgenmain.lua. Skipping.    
[00:03:44]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Loading modmain.lua    
[00:03:44]: Client Version Running    
[00:03:44]: Mod: workshop-351325790 (Geometric Placement)    Loading modworldgenmain.lua    
[00:03:44]: Mod: workshop-351325790 (Geometric Placement)      Mod had no modworldgenmain.lua. Skipping.    
[00:03:44]: Mod: workshop-351325790 (Geometric Placement)    Loading modmain.lua    
[00:03:44]: LOADING LUA SUCCESS
[00:03:44]: PlayerDeaths loaded morgue    2056    
[00:03:44]: PlayerHistory loaded player_history    11647    
[00:03:44]: bloom_enabled    false    
[00:03:44]: loaded saveindex    
[00:03:44]: OnFilesLoaded()    
[00:03:44]: OnUpdatePurchaseStateComplete    
[00:03:44]:     Unload FE    
[00:03:44]:     Unload FE done    
[00:03:45]: Mod: workshop-365119238 (SmartCrockPot)    Registering prefabs    
[00:03:45]: Mod: workshop-365119238 (SmartCrockPot)      Registering default mod prefab    
[00:03:45]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Registering prefabs    
[00:03:45]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Registering prefab file: prefabs/mapiconhelper    
[00:03:45]: Mod: workshop-672584952 ([Updated] Complete Your Map)        mapiconhelper    
[00:03:45]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Registering default mod prefab    
[00:03:45]: Mod: workshop-362906105 (Sticky Recipe)    Registering prefabs    
[00:03:45]: Mod: workshop-362906105 (Sticky Recipe)      Registering default mod prefab    
[00:03:45]: Mod: workshop-344071294 (Quick Emotes)    Registering prefabs    
[00:03:45]: Mod: workshop-344071294 (Quick Emotes)      Registering default mod prefab    
[00:03:45]: Mod: workshop-539957958 (Persistent Compass HUD)    Registering prefabs    
[00:03:45]: Mod: workshop-539957958 (Persistent Compass HUD)      Registering default mod prefab    
[00:03:45]: Mod: workshop-367593872 (No More Lag)    Registering prefabs    
[00:03:45]: Mod: workshop-367593872 (No More Lag)      Registering default mod prefab    
[00:03:45]: Mod: workshop-345692228 (Minimap HUD)    Registering prefabs    
[00:03:45]: Mod: workshop-345692228 (Minimap HUD)      Registering default mod prefab    
[00:03:45]: Mod: workshop-661284815 (Improved Force Attack)    Registering prefabs    
[00:03:45]: Mod: workshop-661284815 (Improved Force Attack)      Registering default mod prefab    
[00:03:45]: Mod: workshop-376333686 (Combined Status)    Registering prefabs    
[00:03:45]: Mod: workshop-376333686 (Combined Status)      Registering default mod prefab    
[00:03:45]: Mod: workshop-394612159 (Auto ReTrap)    Registering prefabs    
[00:03:45]: Mod: workshop-394612159 (Auto ReTrap)      Registering default mod prefab    
[00:03:45]: Mod: workshop-609051112 (Action Queue(DST))    Registering prefabs    
[00:03:45]: Mod: workshop-609051112 (Action Queue(DST))      Registering default mod prefab    
[00:03:45]: Mod: workshop-694531911 ( [DST]Aerial view)    Registering prefabs    
[00:03:45]: Mod: workshop-694531911 ( [DST]Aerial view)      Registering default mod prefab    
[00:03:45]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Registering prefabs    
[00:03:45]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Registering prefab file: prefabs/range    
[00:03:45]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])        range_indicator_client    
[00:03:45]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Registering default mod prefab    
[00:03:45]: Mod: workshop-351325790 (Geometric Placement)    Registering prefabs    
[00:03:45]: Mod: workshop-351325790 (Geometric Placement)      Registering prefab file: prefabs/buildgridplacer    
[00:03:45]: Mod: workshop-351325790 (Geometric Placement)        buildgridplacer    
[00:03:45]: Mod: workshop-351325790 (Geometric Placement)      Registering default mod prefab    
[00:03:45]:     LOAD BE    
[00:03:49]:     LOAD BE: done    
[00:03:49]: Loading world: client_temp/server_save    
[00:03:49]: Save file is at version 3    
[00:03:49]: MiniMapComponent::AddAtlas( minimap/minimap_data.xml )
[00:03:49]: MiniMapComponent::AddAtlas( ../mods/workshop-672584952/minimap/moreminimapicons.xml )
[00:03:50]: Loading Nav Grid    
[00:03:50]: Reconstructing topology    
[00:03:50]:     ...Sorting points    
[00:03:50]:     ...Sorting edges    
[00:03:50]:     ...Connecting nodes    
[00:03:50]:     ...Validating connections    
[00:03:50]:     ...Housekeeping    
[00:03:50]:     ...Done!    
[00:03:50]: ModIndex: Load sequence finished successfully.    
[00:03:50]: Reset() returning
[00:03:51]: Attempting to send resume request
[00:03:51]: ReceiveResumeNotification
[00:03:51]: Deleting user: session/90E621F09490DBD1/KU_bPVGW5kg_/0000000001
[00:04:44]: DoRestart:    true    
[00:04:45]: [Steam] Game Connection terminated (1098275158|11000)
[00:04:45]: [Shard] Stopping shard mode
[00:04:45]: SteamWorkshop::CancelDownloads clearing all unfinished downloads
[00:04:45]: unloading prefabs for mod MOD_workshop-365119238    
[00:04:45]: unloading prefabs for mod MOD_workshop-672584952    
[00:04:45]: unloading prefabs for mod MOD_workshop-362906105    
[00:04:45]: unloading prefabs for mod MOD_workshop-344071294    
[00:04:45]: unloading prefabs for mod MOD_workshop-539957958    
[00:04:45]: unloading prefabs for mod MOD_workshop-367593872    
[00:04:45]: unloading prefabs for mod MOD_workshop-345692228    
[00:04:45]: unloading prefabs for mod MOD_workshop-661284815    
[00:04:45]: unloading prefabs for mod MOD_workshop-376333686    
[00:04:45]: unloading prefabs for mod MOD_workshop-394612159    
[00:04:45]: unloading prefabs for mod MOD_workshop-609051112    
[00:04:45]: unloading prefabs for mod MOD_workshop-694531911    
[00:04:45]: unloading prefabs for mod MOD_workshop-522023088    
[00:04:45]: unloading prefabs for mod MOD_workshop-351325790    
[00:04:45]: Collecting garbage...
[00:04:45]: lua_gc took 0.01 seconds
[00:04:45]: ~ShardLuaProxy()
[00:04:45]: ~ItemServerLuaProxy()
[00:04:45]: ~InventoryLuaProxy()
[00:04:45]: ~NetworkLuaProxy()
[00:04:45]: ~SimLuaProxy()
[00:04:45]: SteamWorkshop::CancelDownloads clearing all unfinished downloads
[00:04:45]: lua_close took 0.02 seconds
[00:04:45]: ReleaseAll
[00:04:45]: ReleaseAll Finished
[00:04:45]: cGame::StartPlaying
[00:04:45]: LOADING LUA
[00:04:45]: DoLuaFile scripts/main.lua
[00:04:45]: DoLuaFile loading buffer scripts/main.lua
[00:04:45]: running main.lua
    
[00:04:45]: loaded modindex    
[00:04:46]: ModIndex: Beginning normal load sequence.
    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-344071294    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-345692228    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-351325790    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-362906105    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-365119238    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-367593872    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-394612159    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-522023088    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-539957958    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-609051112    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-661284815    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-672584952    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-694531911    
[00:04:46]: Could not load mod_config_data/modconfiguration_workshop-344071294    
[00:04:46]: Loading mod: workshop-344071294 (Quick Emotes) Version:1.7    
[00:04:46]: loaded mod_config_data/modconfiguration_workshop-345692228    
[00:04:46]: Loading mod: workshop-345692228 (Minimap HUD) Version:1.0.7    
[00:04:46]: loaded mod_config_data/modconfiguration_workshop-351325790    
[00:04:46]: Loading mod: workshop-351325790 (Geometric Placement) Version:2.1.1    
[00:04:46]: Could not load mod_config_data/modconfiguration_workshop-362906105    
[00:04:46]: Loading mod: workshop-362906105 (Sticky Recipe) Version:1.1.2    
[00:04:46]: Could not load mod_config_data/modconfiguration_workshop-365119238    
[00:04:46]: Loading mod: workshop-365119238 (SmartCrockPot) Version:4.02    
[00:04:46]: Could not load mod_config_data/modconfiguration_workshop-367593872    
[00:04:46]: Loading mod: workshop-367593872 (No More Lag) Version:1.1.2    
[00:04:46]: Could not load mod_config_data/modconfiguration_workshop-376333686    
[00:04:46]: Loading mod: workshop-376333686 (Combined Status) Version:1.6.6    
[00:04:46]: Could not load mod_config_data/modconfiguration_workshop-394612159    
[00:04:46]: Loading mod: workshop-394612159 (Auto ReTrap) Version:1.02    
[00:04:46]: Could not load mod_config_data/modconfiguration_workshop-522023088    
[00:04:46]: Loading mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT]) Version:1.2.4    
[00:04:46]: Could not load mod_config_data/modconfiguration_workshop-539957958    
[00:04:46]: Loading mod: workshop-539957958 (Persistent Compass HUD) Version:0.1    
[00:04:46]: Could not load mod_config_data/modconfiguration_workshop-609051112    
[00:04:46]: Loading mod: workshop-609051112 (Action Queue(DST)) Version:1.2.6    
[00:04:46]: Could not load mod_config_data/modconfiguration_workshop-661284815    
[00:04:46]: Loading mod: workshop-661284815 (Improved Force Attack) Version:0.5    
[00:04:46]: loaded mod_config_data/modconfiguration_workshop-672584952    
[00:04:46]: Loading mod: workshop-672584952 ([Updated] Complete Your Map) Version:4.32c    
[00:04:46]: loaded mod_config_data/modconfiguration_workshop-694531911    
[00:04:46]: Loading mod: workshop-694531911 ( [DST]Aerial view) Version:1.1.2    
[00:04:46]: Mod: workshop-365119238 (SmartCrockPot)    Loading modworldgenmain.lua    
[00:04:46]: Mod: workshop-365119238 (SmartCrockPot)      Mod had no modworldgenmain.lua. Skipping.    
[00:04:46]: Mod: workshop-365119238 (SmartCrockPot)    Loading modmain.lua    
[00:04:46]: modimport: ../mods/workshop-365119238/modmain_segments/containerwidgetfunction.lua    
[00:04:46]: modimport: ../mods/workshop-365119238/modmain_segments/containers_setup.lua    
[00:04:46]: modimport: ../mods/workshop-365119238/modmain_segments/action_predict.lua    
[00:04:46]: WARNING: Positional Action parameters are deprecated. Please pass action a table instead.    
[00:04:46]: Action defined at     ../mods/workshop-365119238/modmain_segments/action_predict.lua:1 in (local) result (main) <0-0>    
[00:04:46]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Loading modworldgenmain.lua    
[00:04:46]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Mod had no modworldgenmain.lua. Skipping.    
[00:04:46]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Loading modmain.lua    
[00:04:46]: Mod: workshop-362906105 (Sticky Recipe)    Loading modworldgenmain.lua    
[00:04:46]: Mod: workshop-362906105 (Sticky Recipe)      Mod had no modworldgenmain.lua. Skipping.    
[00:04:46]: Mod: workshop-362906105 (Sticky Recipe)    Loading modmain.lua    
[00:04:46]: Mod: workshop-344071294 (Quick Emotes)    Loading modworldgenmain.lua    
[00:04:46]: Mod: workshop-344071294 (Quick Emotes)      Mod had no modworldgenmain.lua. Skipping.    
[00:04:46]: Mod: workshop-344071294 (Quick Emotes)    Loading modmain.lua    
[00:04:46]: Mod: workshop-539957958 (Persistent Compass HUD)    Loading modworldgenmain.lua    
[00:04:46]: Mod: workshop-539957958 (Persistent Compass HUD)      Mod had no modworldgenmain.lua. Skipping.    
[00:04:46]: Mod: workshop-539957958 (Persistent Compass HUD)    Loading modmain.lua    
[00:04:46]: Mod: workshop-367593872 (No More Lag)    Loading modworldgenmain.lua    
[00:04:46]: Mod: workshop-367593872 (No More Lag)      Mod had no modworldgenmain.lua. Skipping.    
[00:04:46]: Mod: workshop-367593872 (No More Lag)    Loading modmain.lua    
[00:04:46]: Mod: workshop-345692228 (Minimap HUD)    Loading modworldgenmain.lua    
[00:04:46]: Mod: workshop-345692228 (Minimap HUD)      Mod had no modworldgenmain.lua. Skipping.    
[00:04:46]: Mod: workshop-345692228 (Minimap HUD)    Loading modmain.lua    
[00:04:46]: Mod: workshop-661284815 (Improved Force Attack)    Loading modworldgenmain.lua    
[00:04:46]: Mod: workshop-661284815 (Improved Force Attack)      Mod had no modworldgenmain.lua. Skipping.    
[00:04:46]: Mod: workshop-661284815 (Improved Force Attack)    Loading modmain.lua    
[00:04:46]: Mod: workshop-376333686 (Combined Status)    Loading modworldgenmain.lua    
[00:04:46]: Mod: workshop-376333686 (Combined Status)      Mod had no modworldgenmain.lua. Skipping.    
[00:04:46]: Mod: workshop-376333686 (Combined Status)    Loading modmain.lua    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-344071294    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-345692228    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-351325790    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-362906105    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-365119238    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-367593872    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-394612159    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-522023088    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-539957958    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-609051112    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-661284815    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-672584952    
[00:04:46]: ModIndex:GetModsToLoad inserting moddir,     workshop-694531911    
[00:04:46]: Mod: workshop-394612159 (Auto ReTrap)    Loading modworldgenmain.lua    
[00:04:46]: Mod: workshop-394612159 (Auto ReTrap)      Mod had no modworldgenmain.lua. Skipping.    
[00:04:46]: Mod: workshop-394612159 (Auto ReTrap)    Loading modmain.lua    
[00:04:46]: Mod: workshop-609051112 (Action Queue(DST))    Loading modworldgenmain.lua    
[00:04:46]: Mod: workshop-609051112 (Action Queue(DST))      Mod had no modworldgenmain.lua. Skipping.    
[00:04:46]: Mod: workshop-609051112 (Action Queue(DST))    Loading modmain.lua    
[00:04:46]: Mod: workshop-694531911 ( [DST]Aerial view)    Loading modworldgenmain.lua    
[00:04:46]: Mod: workshop-694531911 ( [DST]Aerial view)      Mod had no modworldgenmain.lua. Skipping.    
[00:04:46]: Mod: workshop-694531911 ( [DST]Aerial view)    Loading modmain.lua    
[00:04:46]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Loading modworldgenmain.lua    
[00:04:46]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Mod had no modworldgenmain.lua. Skipping.    
[00:04:46]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Loading modmain.lua    
[00:04:46]: Client Version Running    
[00:04:46]: Mod: workshop-351325790 (Geometric Placement)    Loading modworldgenmain.lua    
[00:04:46]: Mod: workshop-351325790 (Geometric Placement)      Mod had no modworldgenmain.lua. Skipping.    
[00:04:46]: Mod: workshop-351325790 (Geometric Placement)    Loading modmain.lua    
[00:04:46]: LOADING LUA SUCCESS
[00:04:46]: PlayerDeaths loaded morgue    2056    
[00:04:46]: PlayerHistory loaded player_history    11647    
[00:04:46]: bloom_enabled    false    
[00:04:46]: loaded saveindex    
[00:04:46]: OnFilesLoaded()    
[00:04:46]: OnUpdatePurchaseStateComplete    
[00:04:46]:     Unload BE    
[00:04:46]:     Unload BE done    
[00:04:46]: Could not unload undefined prefab 0xb0a79a1 (twiggy_nut)
[00:04:46]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:04:46]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:04:46]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:04:46]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:04:46]: Could not unload undefined prefab 0x359da624 (log)
[00:04:46]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:04:46]: Could not unload undefined prefab 0x29d8efdb (red_leaves_chop)
[00:04:46]: Could not unload undefined prefab 0x39590c78 (orange_leaves_chop)
[00:04:46]: Could not unload undefined prefab 0x2d1c40c (deciduous_root)
[00:04:46]: Could not unload undefined prefab 0x41ba89b5 (nightmarefuel)
[00:04:46]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:04:46]: Could not unload undefined prefab 0x235a9a90 (birchnutdrake)
[00:04:46]: Could not unload undefined prefab 0x184178b (meat)
[00:04:46]: Could not unload undefined prefab 0x359da624 (log)
[00:04:46]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:04:46]: Could not unload undefined prefab 0x706870b6 (green_cap)
[00:04:46]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:04:46]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:04:46]: Could not unload undefined prefab 0x1a35332f (spore_medium)
[00:04:46]: Could not unload undefined prefab 0x8119781a (cookedmandrake)
[00:04:46]: Could not unload undefined prefab 0x8c6be253 (mandrake)
[00:04:46]: Could not unload undefined prefab 0x8c6be253 (mandrake)
[00:04:46]: Could not unload undefined prefab 0xa694a25e (mandrake_planted)
[00:04:46]: Could not unload undefined prefab 0x359da624 (log)
[00:04:46]: Could not unload undefined prefab 0x112002ba (twiggy_nut_sapling)
[00:04:46]: Could not unload undefined prefab 0x184178b (meat)
[00:04:46]: Could not unload undefined prefab 0x359da624 (log)
[00:04:46]: Could not unload undefined prefab 0x1078732c (character_fire)
[00:04:46]: Could not unload undefined prefab 0x184178b (meat)
[00:04:46]: Could not unload undefined prefab 0x359da624 (log)
[00:04:46]: Could not unload undefined prefab 0x1078732c (character_fire)
[00:04:46]: Could not unload undefined prefab 0x78d69cdc (rock_petrified_tree_short)
[00:04:46]: Could not unload undefined prefab 0x4f122f8c (rock_petrified_tree_med)
[00:04:46]: Could not unload undefined prefab 0x9ce1eaee (rocks)
[00:04:46]: Could not unload undefined prefab 0x7e6d93ac (nitre)
[00:04:46]: Could not unload undefined prefab 0x50155047 (rock_petrified_tree_old)
[00:04:46]: Could not unload undefined prefab 0xaec874c8 (disease_puff)
[00:04:46]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:04:46]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:04:46]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:04:46]: Could not unload undefined prefab 0x359da624 (log)
[00:04:46]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:04:46]: Could not unload undefined prefab 0x706870b6 (green_cap)
[00:04:46]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:04:46]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:04:46]: Could not unload undefined prefab 0xed18eed (spore_small)
[00:04:46]: Could not unload undefined prefab 0x8539b55b (mushtree_small_burntfx)
[00:04:46]: Could not unload undefined prefab 0x994e32df (mushtree_small_bloom_burntfx)
[00:04:46]: Could not unload undefined prefab 0x359da624 (log)
[00:04:46]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:04:46]: Could not unload undefined prefab 0x706870b6 (green_cap)
[00:04:46]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:04:46]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:04:46]: Could not unload undefined prefab 0x5286daa7 (spore_tall)
[00:04:46]: Could not unload undefined prefab 0x9db421e9 (mushtree_tall_burntfx)
[00:04:46]: Could not unload undefined prefab 0x4336ea6d (mushtree_tall_bloom_burntfx)
[00:04:46]: Mod: workshop-365119238 (SmartCrockPot)    Registering prefabs    
[00:04:46]: Mod: workshop-365119238 (SmartCrockPot)      Registering default mod prefab    
[00:04:46]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Registering prefabs    
[00:04:46]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Registering prefab file: prefabs/mapiconhelper    
[00:04:46]: Mod: workshop-672584952 ([Updated] Complete Your Map)        mapiconhelper    
[00:04:46]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Registering default mod prefab    
[00:04:46]: Mod: workshop-362906105 (Sticky Recipe)    Registering prefabs    
[00:04:46]: Mod: workshop-362906105 (Sticky Recipe)      Registering default mod prefab    
[00:04:46]: Mod: workshop-344071294 (Quick Emotes)    Registering prefabs    
[00:04:46]: Mod: workshop-344071294 (Quick Emotes)      Registering default mod prefab    
[00:04:46]: Mod: workshop-539957958 (Persistent Compass HUD)    Registering prefabs    
[00:04:46]: Mod: workshop-539957958 (Persistent Compass HUD)      Registering default mod prefab    
[00:04:46]: Mod: workshop-367593872 (No More Lag)    Registering prefabs    
[00:04:46]: Mod: workshop-367593872 (No More Lag)      Registering default mod prefab    
[00:04:46]: Mod: workshop-345692228 (Minimap HUD)    Registering prefabs    
[00:04:46]: Mod: workshop-345692228 (Minimap HUD)      Registering default mod prefab    
[00:04:46]: Mod: workshop-661284815 (Improved Force Attack)    Registering prefabs    
[00:04:46]: Mod: workshop-661284815 (Improved Force Attack)      Registering default mod prefab    
[00:04:46]: Mod: workshop-376333686 (Combined Status)    Registering prefabs    
[00:04:46]: Mod: workshop-376333686 (Combined Status)      Registering default mod prefab    
[00:04:46]: Mod: workshop-394612159 (Auto ReTrap)    Registering prefabs    
[00:04:46]: Mod: workshop-394612159 (Auto ReTrap)      Registering default mod prefab    
[00:04:46]: Mod: workshop-609051112 (Action Queue(DST))    Registering prefabs    
[00:04:46]: Mod: workshop-609051112 (Action Queue(DST))      Registering default mod prefab    
[00:04:46]: Mod: workshop-694531911 ( [DST]Aerial view)    Registering prefabs    
[00:04:46]: Mod: workshop-694531911 ( [DST]Aerial view)      Registering default mod prefab    
[00:04:46]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Registering prefabs    
[00:04:46]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Registering prefab file: prefabs/range    
[00:04:46]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])        range_indicator_client    
[00:04:46]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Registering default mod prefab    
[00:04:46]: Mod: workshop-351325790 (Geometric Placement)    Registering prefabs    
[00:04:46]: Mod: workshop-351325790 (Geometric Placement)      Registering prefab file: prefabs/buildgridplacer    
[00:04:46]: Mod: workshop-351325790 (Geometric Placement)        buildgridplacer    
[00:04:46]: Mod: workshop-351325790 (Geometric Placement)      Registering default mod prefab    
[00:04:47]:     Load FE    
[00:04:47]:     Load FE: done    
[00:04:47]: OnLoadPermissionList: APP:Klei//DoNotStarveTogether/client_save/blocklist.txt (Success)
[00:04:47]: OnLoadPermissionList: APP:Klei//DoNotStarveTogether/client_save/adminlist.txt (Failure)
[00:04:47]: OnLoadUserIdList: APP:Klei//DoNotStarveTogether/client_save/whitelist.txt (Failure)
[00:04:47]: SimLuaProxy::QueryServer()
[00:04:47]: ModIndex: Load sequence finished successfully.    
[00:04:47]: Reset() returning
[00:04:48]: [200] Account Communication Success (6)
[00:04:48]: Received (KU_bPVGW5kg) from TokenPurpose
[00:04:48]: [Steam] Auth Session Ticket requested...
[00:04:48]: loaded inventory_cache
[00:04:48]: [Steam] Got Auth Session Ticket
[00:04:49]: loaded inventory_cache
[00:04:50]: SimLuaProxy::QueryServer()
[00:04:51]:    EResult 15, 367082522
[00:04:51]: Failed getting mod details.
[00:04:52]:    EResult 15, 373991022
[00:04:52]: Failed getting mod details.
[00:04:53]: Friends are currently playing in 3 games(s)!
[00:04:53]: You belong to 3 clan(s)!
[00:04:53]: SteamWorkshop::CancelDownloads clearing all unfinished downloads
[00:04:53]: Downloaded server listings - full: 2560 filtered: 1602
[00:05:05]: [Connect] Got new join server request from lua
[00:05:05]: [Connect] Init client connection to (S) <16915548013395816059>
[00:05:05]: [Connect] PendingConnection::Reset(true)
[00:05:05]: SteamWorkshop::CancelDownloads clearing all unfinished downloads
[00:05:05]: [Connect] InternalInitClient <6167725144809786303>
[00:05:05]: [Shard] Starting shard mode as player
[00:05:05]: [Connect] Starting online connection to 86.89.118.65|11000
[00:05:05]: [Connect] Server name: THE BEST SERVER IN THE WORLD
[00:05:06]: [200] Account Communication Success (13)
[00:05:06]: [Connect] Sending ping(s)...
[00:05:06]: [Connect] Ping 86.89.118.65|11000
[00:05:06]: [Connect] Ping response from 86.89.118.65|11000
[00:05:06]: [Connect] Joining server from ping response (silent)...
[00:05:06]: [Connect] PendingConnectionDoConnect to 86.89.118.65|11000
[00:05:06]: [Connect] DirectConnect to 86.89.118.65|11000
[00:05:06]: Connection accepted to 86.89.118.65|11000 <16915548013395816059>
[00:05:06]: Network external address discovered: 86.25.97.9|59121
[00:05:06]: SendClientHandShakePacket "re^eyJVc2VySUQiOiJLVV9iUFZHVzVrZyIsIkdhbWUiOiJEb250U3RhcnZlVG9nZXRoZXIiLCJQdXJwb3NlIjoiR2FtZVNlc3Npb24ifQ==^nK25BI5gkciTudjghjv7wIS1y9sO0iIQ" to <16915548013395816059>
[00:05:07]: DeserializeHandShakeServerListing
[00:05:07]: Network tick rate: U=10(3), D=15
[00:05:07]: Version: 186853
[00:05:07]: [Steam] Game Connection initiated
[00:05:08]: SendClientInventoryHandShakePacket to <16915548013395816059>
[00:05:09]: Begin Session: 90E621F09490DBD1
[00:05:09]: Done Downloading Client Object Data
[00:05:09]: DownloadMods and temp disable    
[00:05:09]: Downloading [1] From: server_temp
[00:05:09]: 1 (40%) 1/1 server_temp/server_save 114000b / 283287b
[00:05:09]: 1 (80%) 1/1 server_temp/server_save 228000b / 283287b
[00:05:09]: 1 (100%) 1/1 server_temp/server_save 283287b / 283287b
[00:05:09]: Download complete[1] Files: 1 Size: 283287
[00:05:11]: unloading prefabs for mod MOD_workshop-365119238    
[00:05:11]: unloading prefabs for mod MOD_workshop-672584952    
[00:05:11]: unloading prefabs for mod MOD_workshop-362906105    
[00:05:11]: unloading prefabs for mod MOD_workshop-344071294    
[00:05:11]: unloading prefabs for mod MOD_workshop-539957958    
[00:05:11]: unloading prefabs for mod MOD_workshop-367593872    
[00:05:11]: unloading prefabs for mod MOD_workshop-345692228    
[00:05:11]: unloading prefabs for mod MOD_workshop-661284815    
[00:05:11]: unloading prefabs for mod MOD_workshop-376333686    
[00:05:11]: unloading prefabs for mod MOD_workshop-394612159    
[00:05:11]: unloading prefabs for mod MOD_workshop-609051112    
[00:05:11]: unloading prefabs for mod MOD_workshop-694531911    
[00:05:11]: unloading prefabs for mod MOD_workshop-522023088    
[00:05:11]: unloading prefabs for mod MOD_workshop-351325790    
[00:05:11]: Collecting garbage...
[00:05:11]: lua_gc took 0.02 seconds
[00:05:11]: ~ShardLuaProxy()
[00:05:11]: ~ItemServerLuaProxy()
[00:05:11]: ~InventoryLuaProxy()
[00:05:11]: ~NetworkLuaProxy()
[00:05:11]: ~SimLuaProxy()
[00:05:11]: SteamWorkshop::CancelDownloads clearing all unfinished downloads
[00:05:11]: lua_close took 0.02 seconds
[00:05:11]: ReleaseAll
[00:05:11]: ReleaseAll Finished
[00:05:11]: cGame::StartPlaying
[00:05:11]: LOADING LUA
[00:05:11]: DoLuaFile scripts/main.lua
[00:05:11]: DoLuaFile loading buffer scripts/main.lua
[00:05:12]: running main.lua
    
[00:05:12]: loaded modindex    
[00:05:12]: ModIndex: Beginning normal load sequence.
    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-344071294    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-345692228    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-351325790    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-362906105    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-365119238    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-367593872    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-394612159    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-522023088    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-539957958    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-609051112    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-661284815    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-672584952    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-694531911    
[00:05:12]: Could not load mod_config_data/modconfiguration_workshop-344071294    
[00:05:12]: Loading mod: workshop-344071294 (Quick Emotes) Version:1.7    
[00:05:12]: loaded mod_config_data/modconfiguration_workshop-345692228    
[00:05:12]: Loading mod: workshop-345692228 (Minimap HUD) Version:1.0.7    
[00:05:12]: loaded mod_config_data/modconfiguration_workshop-351325790    
[00:05:12]: Loading mod: workshop-351325790 (Geometric Placement) Version:2.1.1    
[00:05:12]: Could not load mod_config_data/modconfiguration_workshop-362906105    
[00:05:12]: Loading mod: workshop-362906105 (Sticky Recipe) Version:1.1.2    
[00:05:12]: Could not load mod_config_data/modconfiguration_workshop-365119238    
[00:05:12]: Loading mod: workshop-365119238 (SmartCrockPot) Version:4.02    
[00:05:12]: Could not load mod_config_data/modconfiguration_workshop-367593872    
[00:05:12]: Loading mod: workshop-367593872 (No More Lag) Version:1.1.2    
[00:05:12]: Could not load mod_config_data/modconfiguration_workshop-376333686    
[00:05:12]: Loading mod: workshop-376333686 (Combined Status) Version:1.6.6    
[00:05:12]: Could not load mod_config_data/modconfiguration_workshop-394612159    
[00:05:12]: Loading mod: workshop-394612159 (Auto ReTrap) Version:1.02    
[00:05:12]: Could not load mod_config_data/modconfiguration_workshop-522023088    
[00:05:12]: Loading mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT]) Version:1.2.4    
[00:05:12]: Could not load mod_config_data/modconfiguration_workshop-539957958    
[00:05:12]: Loading mod: workshop-539957958 (Persistent Compass HUD) Version:0.1    
[00:05:12]: Could not load mod_config_data/modconfiguration_workshop-609051112    
[00:05:12]: Loading mod: workshop-609051112 (Action Queue(DST)) Version:1.2.6    
[00:05:12]: Could not load mod_config_data/modconfiguration_workshop-661284815    
[00:05:12]: Loading mod: workshop-661284815 (Improved Force Attack) Version:0.5    
[00:05:12]: loaded mod_config_data/modconfiguration_workshop-672584952    
[00:05:12]: Loading mod: workshop-672584952 ([Updated] Complete Your Map) Version:4.32c    
[00:05:12]: loaded mod_config_data/modconfiguration_workshop-694531911    
[00:05:12]: Loading mod: workshop-694531911 ( [DST]Aerial view) Version:1.1.2    
[00:05:12]: Mod: workshop-365119238 (SmartCrockPot)    Loading modworldgenmain.lua    
[00:05:12]: Mod: workshop-365119238 (SmartCrockPot)      Mod had no modworldgenmain.lua. Skipping.    
[00:05:12]: Mod: workshop-365119238 (SmartCrockPot)    Loading modmain.lua    
[00:05:12]: modimport: ../mods/workshop-365119238/modmain_segments/containerwidgetfunction.lua    
[00:05:12]: modimport: ../mods/workshop-365119238/modmain_segments/containers_setup.lua    
[00:05:12]: modimport: ../mods/workshop-365119238/modmain_segments/action_predict.lua    
[00:05:12]: WARNING: Positional Action parameters are deprecated. Please pass action a table instead.    
[00:05:12]: Action defined at     ../mods/workshop-365119238/modmain_segments/action_predict.lua:1 in (local) result (main) <0-0>    
[00:05:12]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Loading modworldgenmain.lua    
[00:05:12]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Mod had no modworldgenmain.lua. Skipping.    
[00:05:12]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Loading modmain.lua    
[00:05:12]: Mod: workshop-362906105 (Sticky Recipe)    Loading modworldgenmain.lua    
[00:05:12]: Mod: workshop-362906105 (Sticky Recipe)      Mod had no modworldgenmain.lua. Skipping.    
[00:05:12]: Mod: workshop-362906105 (Sticky Recipe)    Loading modmain.lua    
[00:05:12]: Mod: workshop-344071294 (Quick Emotes)    Loading modworldgenmain.lua    
[00:05:12]: Mod: workshop-344071294 (Quick Emotes)      Mod had no modworldgenmain.lua. Skipping.    
[00:05:12]: Mod: workshop-344071294 (Quick Emotes)    Loading modmain.lua    
[00:05:12]: Mod: workshop-539957958 (Persistent Compass HUD)    Loading modworldgenmain.lua    
[00:05:12]: Mod: workshop-539957958 (Persistent Compass HUD)      Mod had no modworldgenmain.lua. Skipping.    
[00:05:12]: Mod: workshop-539957958 (Persistent Compass HUD)    Loading modmain.lua    
[00:05:12]: Mod: workshop-367593872 (No More Lag)    Loading modworldgenmain.lua    
[00:05:12]: Mod: workshop-367593872 (No More Lag)      Mod had no modworldgenmain.lua. Skipping.    
[00:05:12]: Mod: workshop-367593872 (No More Lag)    Loading modmain.lua    
[00:05:12]: Mod: workshop-345692228 (Minimap HUD)    Loading modworldgenmain.lua    
[00:05:12]: Mod: workshop-345692228 (Minimap HUD)      Mod had no modworldgenmain.lua. Skipping.    
[00:05:12]: Mod: workshop-345692228 (Minimap HUD)    Loading modmain.lua    
[00:05:12]: Mod: workshop-661284815 (Improved Force Attack)    Loading modworldgenmain.lua    
[00:05:12]: Mod: workshop-661284815 (Improved Force Attack)      Mod had no modworldgenmain.lua. Skipping.    
[00:05:12]: Mod: workshop-661284815 (Improved Force Attack)    Loading modmain.lua    
[00:05:12]: Mod: workshop-376333686 (Combined Status)    Loading modworldgenmain.lua    
[00:05:12]: Mod: workshop-376333686 (Combined Status)      Mod had no modworldgenmain.lua. Skipping.    
[00:05:12]: Mod: workshop-376333686 (Combined Status)    Loading modmain.lua    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-344071294    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-345692228    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-351325790    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-362906105    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-365119238    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-367593872    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-394612159    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-522023088    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-539957958    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-609051112    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-661284815    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-672584952    
[00:05:12]: ModIndex:GetModsToLoad inserting moddir,     workshop-694531911    
[00:05:12]: Mod: workshop-394612159 (Auto ReTrap)    Loading modworldgenmain.lua    
[00:05:12]: Mod: workshop-394612159 (Auto ReTrap)      Mod had no modworldgenmain.lua. Skipping.    
[00:05:12]: Mod: workshop-394612159 (Auto ReTrap)    Loading modmain.lua    
[00:05:12]: Mod: workshop-609051112 (Action Queue(DST))    Loading modworldgenmain.lua    
[00:05:12]: Mod: workshop-609051112 (Action Queue(DST))      Mod had no modworldgenmain.lua. Skipping.    
[00:05:12]: Mod: workshop-609051112 (Action Queue(DST))    Loading modmain.lua    
[00:05:12]: Mod: workshop-694531911 ( [DST]Aerial view)    Loading modworldgenmain.lua    
[00:05:12]: Mod: workshop-694531911 ( [DST]Aerial view)      Mod had no modworldgenmain.lua. Skipping.    
[00:05:12]: Mod: workshop-694531911 ( [DST]Aerial view)    Loading modmain.lua    
[00:05:12]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Loading modworldgenmain.lua    
[00:05:12]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Mod had no modworldgenmain.lua. Skipping.    
[00:05:12]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Loading modmain.lua    
[00:05:12]: Client Version Running    
[00:05:12]: Mod: workshop-351325790 (Geometric Placement)    Loading modworldgenmain.lua    
[00:05:12]: Mod: workshop-351325790 (Geometric Placement)      Mod had no modworldgenmain.lua. Skipping.    
[00:05:12]: Mod: workshop-351325790 (Geometric Placement)    Loading modmain.lua    
[00:05:12]: LOADING LUA SUCCESS
[00:05:12]: PlayerDeaths loaded morgue    2056    
[00:05:12]: PlayerHistory loaded player_history    11647    
[00:05:12]: bloom_enabled    false    
[00:05:12]: loaded saveindex    
[00:05:12]: OnFilesLoaded()    
[00:05:12]: OnUpdatePurchaseStateComplete    
[00:05:12]:     Unload FE    
[00:05:12]:     Unload FE done    
[00:05:12]: Mod: workshop-365119238 (SmartCrockPot)    Registering prefabs    
[00:05:12]: Mod: workshop-365119238 (SmartCrockPot)      Registering default mod prefab    
[00:05:12]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Registering prefabs    
[00:05:12]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Registering prefab file: prefabs/mapiconhelper    
[00:05:12]: Mod: workshop-672584952 ([Updated] Complete Your Map)        mapiconhelper    
[00:05:12]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Registering default mod prefab    
[00:05:12]: Mod: workshop-362906105 (Sticky Recipe)    Registering prefabs    
[00:05:12]: Mod: workshop-362906105 (Sticky Recipe)      Registering default mod prefab    
[00:05:12]: Mod: workshop-344071294 (Quick Emotes)    Registering prefabs    
[00:05:12]: Mod: workshop-344071294 (Quick Emotes)      Registering default mod prefab    
[00:05:12]: Mod: workshop-539957958 (Persistent Compass HUD)    Registering prefabs    
[00:05:12]: Mod: workshop-539957958 (Persistent Compass HUD)      Registering default mod prefab    
[00:05:12]: Mod: workshop-367593872 (No More Lag)    Registering prefabs    
[00:05:12]: Mod: workshop-367593872 (No More Lag)      Registering default mod prefab    
[00:05:12]: Mod: workshop-345692228 (Minimap HUD)    Registering prefabs    
[00:05:12]: Mod: workshop-345692228 (Minimap HUD)      Registering default mod prefab    
[00:05:12]: Mod: workshop-661284815 (Improved Force Attack)    Registering prefabs    
[00:05:12]: Mod: workshop-661284815 (Improved Force Attack)      Registering default mod prefab    
[00:05:12]: Mod: workshop-376333686 (Combined Status)    Registering prefabs    
[00:05:12]: Mod: workshop-376333686 (Combined Status)      Registering default mod prefab    
[00:05:12]: Mod: workshop-394612159 (Auto ReTrap)    Registering prefabs    
[00:05:12]: Mod: workshop-394612159 (Auto ReTrap)      Registering default mod prefab    
[00:05:12]: Mod: workshop-609051112 (Action Queue(DST))    Registering prefabs    
[00:05:12]: Mod: workshop-609051112 (Action Queue(DST))      Registering default mod prefab    
[00:05:12]: Mod: workshop-694531911 ( [DST]Aerial view)    Registering prefabs    
[00:05:12]: Mod: workshop-694531911 ( [DST]Aerial view)      Registering default mod prefab    
[00:05:12]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Registering prefabs    
[00:05:12]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Registering prefab file: prefabs/range    
[00:05:12]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])        range_indicator_client    
[00:05:12]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Registering default mod prefab    
[00:05:12]: Mod: workshop-351325790 (Geometric Placement)    Registering prefabs    
[00:05:12]: Mod: workshop-351325790 (Geometric Placement)      Registering prefab file: prefabs/buildgridplacer    
[00:05:12]: Mod: workshop-351325790 (Geometric Placement)        buildgridplacer    
[00:05:12]: Mod: workshop-351325790 (Geometric Placement)      Registering default mod prefab    
[00:05:13]:     LOAD BE    
[00:05:14]:     LOAD BE: done    
[00:05:14]: Loading world: client_temp/server_save    
[00:05:14]: Save file is at version 3    
[00:05:14]: MiniMapComponent::AddAtlas( minimap/minimap_data.xml )
[00:05:14]: MiniMapComponent::AddAtlas( ../mods/workshop-672584952/minimap/moreminimapicons.xml )
[00:05:14]: Loading Nav Grid    
[00:05:14]: Reconstructing topology    
[00:05:14]:     ...Sorting points    
[00:05:14]:     ...Sorting edges    
[00:05:14]:     ...Connecting nodes    
[00:05:14]:     ...Validating connections    
[00:05:14]:     ...Housekeeping    
[00:05:14]:     ...Done!    
[00:05:14]: ModIndex: Load sequence finished successfully.    
[00:05:14]: Reset() returning
[00:05:15]: Attempting to send resume request
[00:05:15]: ReceiveResumeNotification
[00:05:15]: Deleting minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[00:05:15]: Deleting user: session/90E621F09490DBD1/KU_bPVGW5kg_/0000000001
[00:05:22]: Loading minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[00:05:22]: Clearing minimap
[00:11:00]: Serializing minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[00:11:00]: Serializing user: session/90E621F09490DBD1/KU_bPVGW5kg_/0000000001
[00:19:00]: Serializing minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[00:19:00]: Serializing user: session/90E621F09490DBD1/KU_bPVGW5kg_/0000000001
[00:21:31]: Serializing minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[00:21:31]: Serializing user: session/90E621F09490DBD1/KU_bPVGW5kg_/0000000001
[00:21:31]: Serializing minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[00:21:31]: [Shard] Starting connection to destination server...
[00:21:31]: [Shard] Getting info of destination server...
[00:21:31]: Received ID_DST_SHARD_SILENT_DISCONNECT
[00:21:31]: Attempting to send resume request
[00:21:31]: [Shard] OnDestinationInfoResponse Connecting to master=(N)
[00:21:31]: [Shard] OnDestinationInfoResponse migration info: 86.89.118.65|11001 
[00:21:31]: [Connect] SetMigrationInfo 86.89.118.65|11001 [90103047099058179]
[00:21:31]: unloading prefabs for mod MOD_workshop-365119238    
[00:21:31]: unloading prefabs for mod MOD_workshop-672584952    
[00:21:31]: unloading prefabs for mod MOD_workshop-362906105    
[00:21:31]: unloading prefabs for mod MOD_workshop-344071294    
[00:21:31]: unloading prefabs for mod MOD_workshop-539957958    
[00:21:31]: unloading prefabs for mod MOD_workshop-367593872    
[00:21:31]: unloading prefabs for mod MOD_workshop-345692228    
[00:21:31]: unloading prefabs for mod MOD_workshop-661284815    
[00:21:31]: unloading prefabs for mod MOD_workshop-376333686    
[00:21:31]: unloading prefabs for mod MOD_workshop-394612159    
[00:21:31]: unloading prefabs for mod MOD_workshop-609051112    
[00:21:31]: unloading prefabs for mod MOD_workshop-694531911    
[00:21:31]: unloading prefabs for mod MOD_workshop-522023088    
[00:21:31]: unloading prefabs for mod MOD_workshop-351325790    
[00:21:31]: Collecting garbage...
[00:21:31]: lua_gc took 0.01 seconds
[00:21:31]: ~ShardLuaProxy()
[00:21:31]: ~ItemServerLuaProxy()
[00:21:31]: ~InventoryLuaProxy()
[00:21:31]: ~NetworkLuaProxy()
[00:21:31]: ~SimLuaProxy()
[00:21:31]: SteamWorkshop::CancelDownloads clearing all unfinished downloads
[00:21:31]: lua_close took 0.02 seconds
[00:21:31]: ReleaseAll
[00:21:31]: ReleaseAll Finished
[00:21:31]: cGame::StartPlaying
[00:21:31]: LOADING LUA
[00:21:31]: DoLuaFile scripts/main.lua
[00:21:31]: DoLuaFile loading buffer scripts/main.lua
[00:21:32]: running main.lua
    
[00:21:32]: loaded modindex    
[00:21:32]: ModIndex: Beginning normal load sequence.
    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-344071294    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-345692228    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-351325790    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-362906105    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-365119238    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-367593872    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-394612159    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-522023088    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-539957958    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-609051112    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-661284815    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-672584952    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-694531911    
[00:21:32]: Could not load mod_config_data/modconfiguration_workshop-344071294    
[00:21:32]: Loading mod: workshop-344071294 (Quick Emotes) Version:1.7    
[00:21:32]: loaded mod_config_data/modconfiguration_workshop-345692228    
[00:21:32]: Loading mod: workshop-345692228 (Minimap HUD) Version:1.0.7    
[00:21:32]: loaded mod_config_data/modconfiguration_workshop-351325790    
[00:21:32]: Loading mod: workshop-351325790 (Geometric Placement) Version:2.1.1    
[00:21:32]: Could not load mod_config_data/modconfiguration_workshop-362906105    
[00:21:32]: Loading mod: workshop-362906105 (Sticky Recipe) Version:1.1.2    
[00:21:32]: Could not load mod_config_data/modconfiguration_workshop-365119238    
[00:21:32]: Loading mod: workshop-365119238 (SmartCrockPot) Version:4.02    
[00:21:32]: Could not load mod_config_data/modconfiguration_workshop-367593872    
[00:21:32]: Loading mod: workshop-367593872 (No More Lag) Version:1.1.2    
[00:21:32]: Could not load mod_config_data/modconfiguration_workshop-376333686    
[00:21:32]: Loading mod: workshop-376333686 (Combined Status) Version:1.6.6    
[00:21:32]: Could not load mod_config_data/modconfiguration_workshop-394612159    
[00:21:32]: Loading mod: workshop-394612159 (Auto ReTrap) Version:1.02    
[00:21:32]: Could not load mod_config_data/modconfiguration_workshop-522023088    
[00:21:32]: Loading mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT]) Version:1.2.4    
[00:21:32]: Could not load mod_config_data/modconfiguration_workshop-539957958    
[00:21:32]: Loading mod: workshop-539957958 (Persistent Compass HUD) Version:0.1    
[00:21:32]: Could not load mod_config_data/modconfiguration_workshop-609051112    
[00:21:32]: Loading mod: workshop-609051112 (Action Queue(DST)) Version:1.2.6    
[00:21:32]: Could not load mod_config_data/modconfiguration_workshop-661284815    
[00:21:32]: Loading mod: workshop-661284815 (Improved Force Attack) Version:0.5    
[00:21:32]: loaded mod_config_data/modconfiguration_workshop-672584952    
[00:21:32]: Loading mod: workshop-672584952 ([Updated] Complete Your Map) Version:4.32c    
[00:21:32]: loaded mod_config_data/modconfiguration_workshop-694531911    
[00:21:32]: Loading mod: workshop-694531911 ( [DST]Aerial view) Version:1.1.2    
[00:21:32]: Mod: workshop-365119238 (SmartCrockPot)    Loading modworldgenmain.lua    
[00:21:32]: Mod: workshop-365119238 (SmartCrockPot)      Mod had no modworldgenmain.lua. Skipping.    
[00:21:32]: Mod: workshop-365119238 (SmartCrockPot)    Loading modmain.lua    
[00:21:32]: modimport: ../mods/workshop-365119238/modmain_segments/containerwidgetfunction.lua    
[00:21:32]: modimport: ../mods/workshop-365119238/modmain_segments/containers_setup.lua    
[00:21:32]: modimport: ../mods/workshop-365119238/modmain_segments/action_predict.lua    
[00:21:32]: WARNING: Positional Action parameters are deprecated. Please pass action a table instead.    
[00:21:32]: Action defined at     ../mods/workshop-365119238/modmain_segments/action_predict.lua:1 in (local) result (main) <0-0>    
[00:21:32]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Loading modworldgenmain.lua    
[00:21:32]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Mod had no modworldgenmain.lua. Skipping.    
[00:21:32]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Loading modmain.lua    
[00:21:32]: Mod: workshop-362906105 (Sticky Recipe)    Loading modworldgenmain.lua    
[00:21:32]: Mod: workshop-362906105 (Sticky Recipe)      Mod had no modworldgenmain.lua. Skipping.    
[00:21:32]: Mod: workshop-362906105 (Sticky Recipe)    Loading modmain.lua    
[00:21:32]: Mod: workshop-344071294 (Quick Emotes)    Loading modworldgenmain.lua    
[00:21:32]: Mod: workshop-344071294 (Quick Emotes)      Mod had no modworldgenmain.lua. Skipping.    
[00:21:32]: Mod: workshop-344071294 (Quick Emotes)    Loading modmain.lua    
[00:21:32]: Mod: workshop-539957958 (Persistent Compass HUD)    Loading modworldgenmain.lua    
[00:21:32]: Mod: workshop-539957958 (Persistent Compass HUD)      Mod had no modworldgenmain.lua. Skipping.    
[00:21:32]: Mod: workshop-539957958 (Persistent Compass HUD)    Loading modmain.lua    
[00:21:32]: Mod: workshop-367593872 (No More Lag)    Loading modworldgenmain.lua    
[00:21:32]: Mod: workshop-367593872 (No More Lag)      Mod had no modworldgenmain.lua. Skipping.    
[00:21:32]: Mod: workshop-367593872 (No More Lag)    Loading modmain.lua    
[00:21:32]: Mod: workshop-345692228 (Minimap HUD)    Loading modworldgenmain.lua    
[00:21:32]: Mod: workshop-345692228 (Minimap HUD)      Mod had no modworldgenmain.lua. Skipping.    
[00:21:32]: Mod: workshop-345692228 (Minimap HUD)    Loading modmain.lua    
[00:21:32]: Mod: workshop-661284815 (Improved Force Attack)    Loading modworldgenmain.lua    
[00:21:32]: Mod: workshop-661284815 (Improved Force Attack)      Mod had no modworldgenmain.lua. Skipping.    
[00:21:32]: Mod: workshop-661284815 (Improved Force Attack)    Loading modmain.lua    
[00:21:32]: Mod: workshop-376333686 (Combined Status)    Loading modworldgenmain.lua    
[00:21:32]: Mod: workshop-376333686 (Combined Status)      Mod had no modworldgenmain.lua. Skipping.    
[00:21:32]: Mod: workshop-376333686 (Combined Status)    Loading modmain.lua    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-344071294    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-345692228    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-351325790    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-362906105    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-365119238    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-367593872    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-394612159    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-522023088    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-539957958    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-609051112    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-661284815    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-672584952    
[00:21:32]: ModIndex:GetModsToLoad inserting moddir,     workshop-694531911    
[00:21:32]: Mod: workshop-394612159 (Auto ReTrap)    Loading modworldgenmain.lua    
[00:21:32]: Mod: workshop-394612159 (Auto ReTrap)      Mod had no modworldgenmain.lua. Skipping.    
[00:21:32]: Mod: workshop-394612159 (Auto ReTrap)    Loading modmain.lua    
[00:21:32]: Mod: workshop-609051112 (Action Queue(DST))    Loading modworldgenmain.lua    
[00:21:32]: Mod: workshop-609051112 (Action Queue(DST))      Mod had no modworldgenmain.lua. Skipping.    
[00:21:32]: Mod: workshop-609051112 (Action Queue(DST))    Loading modmain.lua    
[00:21:32]: Mod: workshop-694531911 ( [DST]Aerial view)    Loading modworldgenmain.lua    
[00:21:32]: Mod: workshop-694531911 ( [DST]Aerial view)      Mod had no modworldgenmain.lua. Skipping.    
[00:21:32]: Mod: workshop-694531911 ( [DST]Aerial view)    Loading modmain.lua    
[00:21:32]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Loading modworldgenmain.lua    
[00:21:32]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Mod had no modworldgenmain.lua. Skipping.    
[00:21:32]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Loading modmain.lua    
[00:21:32]: Client Version Running    
[00:21:32]: Mod: workshop-351325790 (Geometric Placement)    Loading modworldgenmain.lua    
[00:21:32]: Mod: workshop-351325790 (Geometric Placement)      Mod had no modworldgenmain.lua. Skipping.    
[00:21:32]: Mod: workshop-351325790 (Geometric Placement)    Loading modmain.lua    
[00:21:32]: LOADING LUA SUCCESS
[00:21:32]: PlayerDeaths loaded morgue    2056    
[00:21:32]: PlayerHistory loaded player_history    11448    
[00:21:32]: bloom_enabled    false    
[00:21:32]: loaded saveindex    
[00:21:32]: OnFilesLoaded()    
[00:21:32]: OnUpdatePurchaseStateComplete    
[00:21:32]: [Connect] Init client connection to 86.89.118.65|11001
[00:21:32]: [Connect] PendingConnection::Reset(true)
[00:21:32]: [Steam] Game Connection terminated (1098275158|11000)
[00:21:32]: [Shard] Stopping shard mode
[00:21:32]: SteamWorkshop::CancelDownloads clearing all unfinished downloads
[00:21:32]: [Connect] InternalInitClient <7622939615071779105>
[00:21:32]: [Shard] Starting shard mode as player
[00:21:32]: [Connect] No server listing found for <UNASSIGNED_RAKNET_GUID>
[00:21:32]: [Connect] Sending ping(s)...
[00:21:32]: [Connect] Ping 86.89.118.65|11001
[00:21:32]: ModIndex: Load sequence finished successfully.    
[00:21:32]: Reset() returning
[00:21:32]: [Connect] Ping response from 86.89.118.65|11001
[00:21:32]: [Connect] Joining server from ping response...
[00:21:32]: [Connect] Got join server response from lua
[00:21:33]: [200] Account Communication Success (13)
[00:21:33]: [Connect] PendingConnectionDoConnect to 86.89.118.65|11001
[00:21:33]: [Connect] DirectConnect to 86.89.118.65|11001
[00:21:33]: Connection accepted to 86.89.118.65|11001 <16915548013395832812>
[00:21:33]: Network external address discovered: 86.25.97.9|58669
[00:21:33]: SendClientHandShakePacket "re^eyJVc2VySUQiOiJLVV9iUFZHVzVrZyIsIkdhbWUiOiJEb250U3RhcnZlVG9nZXRoZXIiLCJQdXJwb3NlIjoiR2FtZVNlc3Npb24ifQ==^VNbNnGWZRZOLtLUEP+dzlIgs1hwlcZU1" to <16915548013395832812>
[00:21:34]: DeserializeHandShakeServerListing
[00:21:34]: Network tick rate: U=10(3), D=15
[00:21:34]: Version: 186853
[00:21:34]: [Steam] Game Connection initiated
[00:21:34]: Begin Session: 205FAE30949107FC
[00:21:34]: Done Downloading Client Object Data
[00:21:34]: DownloadMods and temp disable    
[00:21:34]: Downloading [2] From: server_temp
[00:21:35]: 2 (38%) 1/1 server_temp/server_save 114000b / 295927b
[00:21:35]: 2 (76%) 1/1 server_temp/server_save 228000b / 295927b
[00:21:36]: 2 (100%) 1/1 server_temp/server_save 295927b / 295927b
[00:21:36]: Download complete[2] Files: 1 Size: 295927
[00:21:36]: Collecting garbage...
[00:21:36]: lua_gc took 0.02 seconds
[00:21:36]: ~ShardLuaProxy()
[00:21:36]: ~ItemServerLuaProxy()
[00:21:36]: ~InventoryLuaProxy()
[00:21:36]: ~NetworkLuaProxy()
[00:21:36]: ~SimLuaProxy()
[00:21:36]: SteamWorkshop::CancelDownloads clearing all unfinished downloads
[00:21:36]: lua_close took 0.02 seconds
[00:21:36]: ReleaseAll
[00:21:36]: ReleaseAll Finished
[00:21:36]: cGame::StartPlaying
[00:21:36]: LOADING LUA
[00:21:36]: DoLuaFile scripts/main.lua
[00:21:36]: DoLuaFile loading buffer scripts/main.lua
[00:21:36]: running main.lua
    
[00:21:36]: loaded modindex    
[00:21:36]: ModIndex: Beginning normal load sequence.
    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-344071294    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-345692228    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-351325790    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-362906105    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-365119238    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-367593872    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-394612159    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-522023088    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-539957958    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-609051112    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-661284815    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-672584952    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-694531911    
[00:21:36]: Could not load mod_config_data/modconfiguration_workshop-344071294    
[00:21:36]: Loading mod: workshop-344071294 (Quick Emotes) Version:1.7    
[00:21:36]: loaded mod_config_data/modconfiguration_workshop-345692228    
[00:21:36]: Loading mod: workshop-345692228 (Minimap HUD) Version:1.0.7    
[00:21:36]: loaded mod_config_data/modconfiguration_workshop-351325790    
[00:21:36]: Loading mod: workshop-351325790 (Geometric Placement) Version:2.1.1    
[00:21:36]: Could not load mod_config_data/modconfiguration_workshop-362906105    
[00:21:36]: Loading mod: workshop-362906105 (Sticky Recipe) Version:1.1.2    
[00:21:36]: Could not load mod_config_data/modconfiguration_workshop-365119238    
[00:21:36]: Loading mod: workshop-365119238 (SmartCrockPot) Version:4.02    
[00:21:36]: Could not load mod_config_data/modconfiguration_workshop-367593872    
[00:21:36]: Loading mod: workshop-367593872 (No More Lag) Version:1.1.2    
[00:21:36]: Could not load mod_config_data/modconfiguration_workshop-376333686    
[00:21:36]: Loading mod: workshop-376333686 (Combined Status) Version:1.6.6    
[00:21:36]: Could not load mod_config_data/modconfiguration_workshop-394612159    
[00:21:36]: Loading mod: workshop-394612159 (Auto ReTrap) Version:1.02    
[00:21:36]: Could not load mod_config_data/modconfiguration_workshop-522023088    
[00:21:36]: Loading mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT]) Version:1.2.4    
[00:21:36]: Could not load mod_config_data/modconfiguration_workshop-539957958    
[00:21:36]: Loading mod: workshop-539957958 (Persistent Compass HUD) Version:0.1    
[00:21:36]: Could not load mod_config_data/modconfiguration_workshop-609051112    
[00:21:36]: Loading mod: workshop-609051112 (Action Queue(DST)) Version:1.2.6    
[00:21:36]: Could not load mod_config_data/modconfiguration_workshop-661284815    
[00:21:36]: Loading mod: workshop-661284815 (Improved Force Attack) Version:0.5    
[00:21:36]: loaded mod_config_data/modconfiguration_workshop-672584952    
[00:21:36]: Loading mod: workshop-672584952 ([Updated] Complete Your Map) Version:4.32c    
[00:21:36]: loaded mod_config_data/modconfiguration_workshop-694531911    
[00:21:36]: Loading mod: workshop-694531911 ( [DST]Aerial view) Version:1.1.2    
[00:21:36]: Mod: workshop-365119238 (SmartCrockPot)    Loading modworldgenmain.lua    
[00:21:36]: Mod: workshop-365119238 (SmartCrockPot)      Mod had no modworldgenmain.lua. Skipping.    
[00:21:36]: Mod: workshop-365119238 (SmartCrockPot)    Loading modmain.lua    
[00:21:36]: modimport: ../mods/workshop-365119238/modmain_segments/containerwidgetfunction.lua    
[00:21:36]: modimport: ../mods/workshop-365119238/modmain_segments/containers_setup.lua    
[00:21:36]: modimport: ../mods/workshop-365119238/modmain_segments/action_predict.lua    
[00:21:36]: WARNING: Positional Action parameters are deprecated. Please pass action a table instead.    
[00:21:36]: Action defined at     ../mods/workshop-365119238/modmain_segments/action_predict.lua:1 in (local) result (main) <0-0>    
[00:21:36]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Loading modworldgenmain.lua    
[00:21:36]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Mod had no modworldgenmain.lua. Skipping.    
[00:21:36]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Loading modmain.lua    
[00:21:36]: Mod: workshop-362906105 (Sticky Recipe)    Loading modworldgenmain.lua    
[00:21:36]: Mod: workshop-362906105 (Sticky Recipe)      Mod had no modworldgenmain.lua. Skipping.    
[00:21:36]: Mod: workshop-362906105 (Sticky Recipe)    Loading modmain.lua    
[00:21:36]: Mod: workshop-344071294 (Quick Emotes)    Loading modworldgenmain.lua    
[00:21:36]: Mod: workshop-344071294 (Quick Emotes)      Mod had no modworldgenmain.lua. Skipping.    
[00:21:36]: Mod: workshop-344071294 (Quick Emotes)    Loading modmain.lua    
[00:21:36]: Mod: workshop-539957958 (Persistent Compass HUD)    Loading modworldgenmain.lua    
[00:21:36]: Mod: workshop-539957958 (Persistent Compass HUD)      Mod had no modworldgenmain.lua. Skipping.    
[00:21:36]: Mod: workshop-539957958 (Persistent Compass HUD)    Loading modmain.lua    
[00:21:36]: Mod: workshop-367593872 (No More Lag)    Loading modworldgenmain.lua    
[00:21:36]: Mod: workshop-367593872 (No More Lag)      Mod had no modworldgenmain.lua. Skipping.    
[00:21:36]: Mod: workshop-367593872 (No More Lag)    Loading modmain.lua    
[00:21:36]: Mod: workshop-345692228 (Minimap HUD)    Loading modworldgenmain.lua    
[00:21:36]: Mod: workshop-345692228 (Minimap HUD)      Mod had no modworldgenmain.lua. Skipping.    
[00:21:36]: Mod: workshop-345692228 (Minimap HUD)    Loading modmain.lua    
[00:21:36]: Mod: workshop-661284815 (Improved Force Attack)    Loading modworldgenmain.lua    
[00:21:36]: Mod: workshop-661284815 (Improved Force Attack)      Mod had no modworldgenmain.lua. Skipping.    
[00:21:36]: Mod: workshop-661284815 (Improved Force Attack)    Loading modmain.lua    
[00:21:36]: Mod: workshop-376333686 (Combined Status)    Loading modworldgenmain.lua    
[00:21:36]: Mod: workshop-376333686 (Combined Status)      Mod had no modworldgenmain.lua. Skipping.    
[00:21:36]: Mod: workshop-376333686 (Combined Status)    Loading modmain.lua    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-344071294    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-345692228    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-351325790    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-362906105    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-365119238    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-367593872    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-394612159    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-522023088    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-539957958    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-609051112    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-661284815    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-672584952    
[00:21:36]: ModIndex:GetModsToLoad inserting moddir,     workshop-694531911    
[00:21:36]: Mod: workshop-394612159 (Auto ReTrap)    Loading modworldgenmain.lua    
[00:21:36]: Mod: workshop-394612159 (Auto ReTrap)      Mod had no modworldgenmain.lua. Skipping.    
[00:21:36]: Mod: workshop-394612159 (Auto ReTrap)    Loading modmain.lua    
[00:21:36]: Mod: workshop-609051112 (Action Queue(DST))    Loading modworldgenmain.lua    
[00:21:36]: Mod: workshop-609051112 (Action Queue(DST))      Mod had no modworldgenmain.lua. Skipping.    
[00:21:36]: Mod: workshop-609051112 (Action Queue(DST))    Loading modmain.lua    
[00:21:36]: Mod: workshop-694531911 ( [DST]Aerial view)    Loading modworldgenmain.lua    
[00:21:36]: Mod: workshop-694531911 ( [DST]Aerial view)      Mod had no modworldgenmain.lua. Skipping.    
[00:21:36]: Mod: workshop-694531911 ( [DST]Aerial view)    Loading modmain.lua    
[00:21:36]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Loading modworldgenmain.lua    
[00:21:36]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Mod had no modworldgenmain.lua. Skipping.    
[00:21:36]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Loading modmain.lua    
[00:21:36]: Client Version Running    
[00:21:36]: Mod: workshop-351325790 (Geometric Placement)    Loading modworldgenmain.lua    
[00:21:36]: Mod: workshop-351325790 (Geometric Placement)      Mod had no modworldgenmain.lua. Skipping.    
[00:21:36]: Mod: workshop-351325790 (Geometric Placement)    Loading modmain.lua    
[00:21:36]: LOADING LUA SUCCESS
[00:21:36]: PlayerDeaths loaded morgue    2056    
[00:21:36]: PlayerHistory loaded player_history    11448    
[00:21:36]: bloom_enabled    false    
[00:21:36]: loaded saveindex    
[00:21:36]: OnFilesLoaded()    
[00:21:36]: OnUpdatePurchaseStateComplete    
[00:21:36]:     Unload FE    
[00:21:36]:     Unload FE done    
[00:21:36]: Could not unload undefined prefab 0x184178b (meat)
[00:21:36]: Could not unload undefined prefab 0x1951bb3 (merm)
[00:21:36]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:21:36]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:21:36]: Could not unload undefined prefab 0x184178b (meat)
[00:21:36]: Could not unload undefined prefab 0x116a891d (backpack_mushy)
[00:21:36]: Could not unload undefined prefab 0x12d1229f (backpack_poop)
[00:21:36]: Could not unload undefined prefab 0x138df44d (hutch_move_fx)
[00:21:36]: Could not unload undefined prefab 0x1a35332f (spore_medium)
[00:21:36]: Could not unload undefined prefab 0x94e85ed (campfirefire)
[00:21:36]: Could not unload undefined prefab 0x1baa7bae (firehound)
[00:21:36]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:21:36]: Could not unload undefined prefab 0x184178b (meat)
[00:21:36]: Could not unload undefined prefab 0x6d4e973 (spat_splash_fx_full)
[00:21:36]: Could not unload undefined prefab 0x162c669d (marble)
[00:21:36]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:21:36]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:21:36]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:21:36]: Could not unload undefined prefab 0x6647de8 (wall_stone_item_placer)
[00:21:36]: Could not unload undefined prefab 0x24356d14 (farmrockflat)
[00:21:36]: Could not unload undefined prefab 0x6fce684 (signleft)
[00:21:36]: Could not unload undefined prefab 0xb3facc (burntfencepost)
[00:21:36]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:21:36]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:21:36]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:21:36]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x222dd5a3 (torch_shadow)
[00:21:36]: Could not unload undefined prefab 0x162c669d (marble)
[00:21:36]: Could not unload undefined prefab 0x1549fe9 (explode_small)
[00:21:36]: Could not unload undefined prefab 0x1549fe9 (explode_small)
[00:21:36]: Could not unload undefined prefab 0x1549fe9 (explode_small)
[00:21:36]: Could not unload undefined prefab 0x1549fe9 (explode_small)
[00:21:36]: Could not unload undefined prefab 0x2132defc (warningshadow)
[00:21:36]: Could not unload undefined prefab 0xead0d51 (cavelight_small)
[00:21:36]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:21:36]: Could not unload undefined prefab 0x9d92cce (purpleamulet)
[00:21:36]: Could not unload undefined prefab 0x2ca456a0 (orangeamulet)
[00:21:36]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:21:36]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:21:36]: Could not unload undefined prefab 0x1765df93 (monkey)
[00:21:36]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:21:36]: Could not unload undefined prefab 0x9d92cce (purpleamulet)
[00:21:36]: Could not unload undefined prefab 0x2ca456a0 (orangeamulet)
[00:21:36]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:21:36]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:21:36]: Could not unload undefined prefab 0x1765df93 (monkey)
[00:21:36]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:21:36]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:21:36]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:21:36]: Could not unload undefined prefab 0x1ad851d9 (mushtree_medium)
[00:21:36]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:21:36]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:21:36]: Could not unload undefined prefab 0xed18eed (spore_small)
[00:21:36]: Could not unload undefined prefab 0x16f0b2bb (mushtree_tall_webbed)
[00:21:36]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:21:36]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:21:36]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:21:36]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:21:36]: Could not unload undefined prefab 0x2aee1328 (tentacle_pillar_hole)
[00:21:36]: Could not unload undefined prefab 0xf57ee3 (rockyherd)
[00:21:36]: Could not unload undefined prefab 0x1765df93 (monkey)
[00:21:36]: Could not unload undefined prefab 0x1765df93 (monkey)
[00:21:36]: Could not unload undefined prefab 0x1078732c (character_fire)
[00:21:36]: Could not unload undefined prefab 0x1549fe9 (explode_small)
[00:21:36]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:21:36]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:21:36]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:21:36]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:21:36]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:21:36]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:21:36]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:21:36]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:21:36]: Could not unload undefined prefab 0x291cde91 (ruins_vase)
[00:21:36]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:21:36]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:21:36]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:21:36]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:21:36]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:21:36]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:21:36]: Could not unload undefined prefab 0x38050c (ruins_rubble_vase)
[00:21:36]: Could not unload undefined prefab 0x2cf27a76 (bishop_charge)
[00:21:36]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:21:36]: Could not unload undefined prefab 0x162c669d (marble)
[00:21:36]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:21:36]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:21:36]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:21:36]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:21:36]: Could not unload undefined prefab 0x162c669d (marble)
[00:21:36]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:21:36]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:21:36]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:21:36]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:21:36]: Could not unload undefined prefab 0x162c669d (marble)
[00:21:36]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:21:36]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:21:36]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:21:36]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:21:36]: Could not unload undefined prefab 0x162c669d (marble)
[00:21:36]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:21:36]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:21:36]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:21:36]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:21:36]: Could not unload undefined prefab 0x20cd7317 (nightmarelight)
[00:21:36]: Could not unload undefined prefab 0x111c8fe5 (fissure)
[00:21:36]: Could not unload undefined prefab 0x184178b (meat)
[00:21:36]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:21:36]: Could not unload undefined prefab 0x2824710f (spider_web_spit_creep)
[00:21:36]: Could not unload undefined prefab 0x23085961 (caverain)
[00:21:36]: Could not unload undefined prefab 0x21823186 (dropperweb)
[00:21:36]: Could not unload undefined prefab 0x15261eec (hutch)
[00:21:36]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:21:36]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:21:36]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:21:36]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:21:36]: Could not unload undefined prefab 0xb1e7b61 (dragonfruit)
[00:21:36]: Could not unload undefined prefab 0x2b3fb01c (watermelon)
[00:21:36]: Could not unload undefined prefab 0x13897ec9 (berries_juicy)
[00:21:36]: Could not unload undefined prefab 0x1047b105 (evergreen)
[00:21:36]: Could not unload undefined prefab 0x9caab61 (evergreen_normal)
[00:21:36]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:21:36]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:21:36]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:21:36]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:21:36]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:21:36]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:21:36]: Could not unload undefined prefab 0xa5cdb4c (evergreen_sparse_normal)
[00:21:36]: Could not unload undefined prefab 0x6d765b7 (evergreen_sparse_short)
[00:21:36]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:21:36]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:21:36]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:21:36]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:21:36]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:21:36]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:21:36]: Could not unload undefined prefab 0x204c651d (evergreen_stump)
[00:21:36]: Could not unload undefined prefab 0xb0a79a1 (twiggy_nut)
[00:21:36]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:21:36]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:21:36]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:21:36]: Could not unload undefined prefab 0xb0a79a1 (twiggy_nut)
[00:21:36]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:21:36]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:21:36]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:21:36]: Could not unload undefined prefab 0xb0a79a1 (twiggy_nut)
[00:21:36]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:21:36]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:21:36]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:21:36]: Could not unload undefined prefab 0x28861538 (sapling)
[00:21:36]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:21:36]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:21:36]: Could not unload undefined prefab 0x217a7c34 (berrybush2)
[00:21:36]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:21:36]: Could not unload undefined prefab 0x87f86db (rock_moon)
[00:21:36]: Could not unload undefined prefab 0x107c65e6 (tallbird)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x1baa7bae (firehound)
[00:21:36]: Could not unload undefined prefab 0x2747c45b (krampus)
[00:21:36]: Could not unload undefined prefab 0x19c004b2 (pighouse)
[00:21:36]: Could not unload undefined prefab 0x2571d493 (butterfly)
[00:21:36]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:21:36]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:21:36]: Could not unload undefined prefab 0x24b8f3b (fireflies)
[00:21:36]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:21:36]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:21:36]: Could not unload undefined prefab 0x2f85395e (turf_savanna)
[00:21:36]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:21:36]: Could not unload undefined prefab 0x31b9f5e7 (turf_forest)
[00:21:36]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:21:36]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:21:36]: Could not unload undefined prefab 0x10270c70 (turf_fungus)
[00:21:36]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:21:36]: Could not unload undefined prefab 0x59d5dd3 (turf_underrock)
[00:21:36]: Could not unload undefined prefab 0x2fbde1f2 (turf_mud)
[00:21:36]: Could not unload undefined prefab 0x1bd1b038 (insanityrock)
[00:21:36]: Could not unload undefined prefab 0x1c6b2805 (houndmound)
[00:21:36]: Could not unload undefined prefab 0x184178b (meat)
[00:21:36]: Could not unload undefined prefab 0xe2bfa46 (tophat)
[00:21:36]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:21:36]: Could not unload undefined prefab 0x2368cc34 (green_mushroom)
[00:21:36]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:21:36]: Could not unload undefined prefab 0x67ff1ed (mermhouse)
[00:21:36]: Could not unload undefined prefab 0x2ffe1998 (flower_evil)
[00:21:36]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:21:36]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:21:36]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:21:36]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:21:36]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:21:36]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:21:36]: Could not unload undefined prefab 0x2cf27a76 (bishop_charge)
[00:21:36]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:21:36]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:21:36]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:21:36]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:21:36]: Could not unload undefined prefab 0x29d8efdb (red_leaves_chop)
[00:21:36]: Could not unload undefined prefab 0x2d1c40c (deciduous_root)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x235a9a90 (birchnutdrake)
[00:21:36]: Could not unload undefined prefab 0x29d8efdb (red_leaves_chop)
[00:21:36]: Could not unload undefined prefab 0x2d1c40c (deciduous_root)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x235a9a90 (birchnutdrake)
[00:21:36]: Could not unload undefined prefab 0x29d8efdb (red_leaves_chop)
[00:21:36]: Could not unload undefined prefab 0x2d1c40c (deciduous_root)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x235a9a90 (birchnutdrake)
[00:21:36]: Could not unload undefined prefab 0x29d8efdb (red_leaves_chop)
[00:21:36]: Could not unload undefined prefab 0x2d1c40c (deciduous_root)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x235a9a90 (birchnutdrake)
[00:21:36]: Could not unload undefined prefab 0x29d8efdb (red_leaves_chop)
[00:21:36]: Could not unload undefined prefab 0x2d1c40c (deciduous_root)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x235a9a90 (birchnutdrake)
[00:21:36]: Could not unload undefined prefab 0x32d080ea (drumstick)
[00:21:36]: Could not unload undefined prefab 0x18c46cd (glommerfuel)
[00:21:36]: Could not unload undefined prefab 0x11c7d51 (glommerwings)
[00:21:36]: Could not unload undefined prefab 0x162c669d (marble)
[00:21:36]: Could not unload undefined prefab 0x32fc24ed (cactus_flower)
[00:21:36]: Could not unload undefined prefab 0x2bcce899 (writeable_classified)
[00:21:36]: Could not unload undefined prefab 0x3306d1dc (thunder_far)
[00:21:36]: Could not unload undefined prefab 0x1796bd2a (lightning)
[00:21:36]: Could not unload undefined prefab 0x162c669d (marble)
[00:21:36]: Could not unload undefined prefab 0x184178b (meat)
[00:21:36]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:21:36]: Could not unload undefined prefab 0x184178b (meat)
[00:21:36]: Could not unload undefined prefab 0x184178b (meat)
[00:21:36]: Could not unload undefined prefab 0x1ddfa303 (horn)
[00:21:36]: Could not unload undefined prefab 0x22a4f6ff (bird_egg)
[00:21:36]: Could not unload undefined prefab 0x32d080ea (drumstick)
[00:21:36]: Could not unload undefined prefab 0x22a4f6ff (bird_egg)
[00:21:36]: Could not unload undefined prefab 0x184178b (meat)
[00:21:36]: Could not unload undefined prefab 0xb03e93a (trunk_summer)
[00:21:36]: Could not unload undefined prefab 0x184178b (meat)
[00:21:36]: Could not unload undefined prefab 0xb03e93a (trunk_summer)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x30a708a2 (bee)
[00:21:36]: Could not unload undefined prefab 0x184178b (meat)
[00:21:36]: Could not unload undefined prefab 0x2e264dbc (blowdart_pipe)
[00:21:36]: Could not unload undefined prefab 0x67bb53b (mole)
[00:21:36]: Could not unload undefined prefab 0x27bb85c8 (cave_entrance)
[00:21:36]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:21:36]: Could not unload undefined prefab 0x3de9fbd (teleportato_box)
[00:21:36]: Could not unload undefined prefab 0x45ac955 (teleportato_potato)
[00:21:36]: Could not unload undefined prefab 0x1f5630bd (dug_marsh_bush)
[00:21:36]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:21:36]: Could not unload undefined prefab 0x38e59fd (mist)
[00:21:36]: Could not unload undefined prefab 0x1d298b03 (snow)
[00:21:36]: Could not unload undefined prefab 0x162c669d (marble)
[00:21:36]: Could not unload undefined prefab 0x162c669d (marble)
[00:21:36]: Could not unload undefined prefab 0x2c507dbb (statueharp)
[00:21:36]: Could not unload undefined prefab 0x1e508f2e (statuemaxwell)
[00:21:36]: Could not unload undefined prefab 0x9d92cce (purpleamulet)
[00:21:36]: Could not unload undefined prefab 0x1765df93 (monkey)
[00:21:36]: Could not unload undefined prefab 0x67bb53b (mole)
[00:21:36]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:21:36]: Could not unload undefined prefab 0x30a708a2 (bee)
[00:21:36]: Could not unload undefined prefab 0xf174236 (feather_robin_winter)
[00:21:36]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:21:36]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:21:36]: Could not unload undefined prefab 0xc01796b (corn_seeds)
[00:21:36]: Could not unload undefined prefab 0x2d99608b (pumpkin_seeds)
[00:21:36]: Could not unload undefined prefab 0x2571d493 (butterfly)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x1eee0485 (transistor)
[00:21:36]: Could not unload undefined prefab 0x1c86b389 (froglegs)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:21:36]: Could not unload undefined prefab 0x6dddac (shadowmeteor)
[00:21:36]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:21:36]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:21:36]: Could not unload undefined prefab 0x1baa7bae (firehound)
[00:21:36]: Could not unload undefined prefab 0x1e17a690 (spat)
[00:21:36]: Could not unload undefined prefab 0x30bdcde6 (lavae_move_fx)
[00:21:36]: Could not unload undefined prefab 0xdcd8f65 (crawlinghorror)
[00:21:36]: Could not unload undefined prefab 0x25fd132f (shadowhand)
[00:21:36]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:21:36]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:21:36]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:21:36]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:21:36]: Could not unload undefined prefab 0x107f3fc2 (seeds)
[00:21:36]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:21:36]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:21:36]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:21:36]: Could not unload undefined prefab 0x107f3fc2 (seeds)
[00:21:36]: Could not unload undefined prefab 0xf174236 (feather_robin_winter)
[00:21:36]: Could not unload undefined prefab 0x67bb53b (mole)
[00:21:36]: Could not unload undefined prefab 0x24b8f3b (fireflies)
[00:21:36]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:21:36]: Could not unload undefined prefab 0x1c86b389 (froglegs)
[00:21:36]: Could not unload undefined prefab 0x86a562b (frogsplash)
[00:21:36]: Could not unload undefined prefab 0x30a708a2 (bee)
[00:21:36]: Could not unload undefined prefab 0xcc84da (moose_nest_fx_idle)
[00:21:36]: Could not unload undefined prefab 0x68af69d (goose_feather)
[00:21:36]: Could not unload undefined prefab 0x32d080ea (drumstick)
[00:21:36]: Could not unload undefined prefab 0x68af69d (goose_feather)
[00:21:36]: Could not unload undefined prefab 0x32d080ea (drumstick)
[00:21:36]: Could not unload undefined prefab 0x5bf8db2 (furtuft)
[00:21:36]: Could not unload undefined prefab 0xc2dcfd4 (firesplash_fx)
[00:21:36]: Could not unload undefined prefab 0x217767f3 (attackfire_fx)
[00:21:36]: Could not unload undefined prefab 0x19f41fd5 (dragon_scales)
[00:21:36]: Could not unload undefined prefab 0x30bdcde6 (lavae_move_fx)
[00:21:36]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:21:36]: Could not unload undefined prefab 0x184178b (meat)
[00:21:36]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:21:36]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:21:36]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:21:36]: Could not unload undefined prefab 0x1cba00e4 (chester_eyebone)
[00:21:36]: Could not unload undefined prefab 0xc2804d5 (sps_berrybush)
[00:21:36]: Could not unload undefined prefab 0x13897ec9 (berries_juicy)
[00:21:36]: Could not unload undefined prefab 0x269656ca (dug_berrybush_juicy)
[00:21:36]: Could not unload undefined prefab 0x32d080ea (drumstick)
[00:21:36]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:21:36]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:21:36]: Could not unload undefined prefab 0x266c2f16 (houndwarning_lvl1)
[00:21:36]: Could not unload undefined prefab 0x266c2f17 (houndwarning_lvl2)
[00:21:36]: Could not unload undefined prefab 0x266c2f18 (houndwarning_lvl3)
[00:21:36]: Could not unload undefined prefab 0x266c2f19 (houndwarning_lvl4)
[00:21:36]: Could not unload undefined prefab 0x28b9400d (deerclopswarning_lvl1)
[00:21:36]: Could not unload undefined prefab 0x28b9400e (deerclopswarning_lvl2)
[00:21:36]: Could not unload undefined prefab 0x28b9400f (deerclopswarning_lvl3)
[00:21:36]: Could not unload undefined prefab 0x28b94010 (deerclopswarning_lvl4)
[00:21:36]: Could not unload undefined prefab 0x1399a452 (beargerwarning_lvl1)
[00:21:36]: Could not unload undefined prefab 0x1399a453 (beargerwarning_lvl2)
[00:21:36]: Could not unload undefined prefab 0x1399a454 (beargerwarning_lvl3)
[00:21:36]: Could not unload undefined prefab 0x1399a455 (beargerwarning_lvl4)
[00:21:36]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0xc01796b (corn_seeds)
[00:21:36]: Could not unload undefined prefab 0x2cabadf1 (staffcastfx)
[00:21:36]: Could not unload undefined prefab 0x36458456 (stafflight)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x2cabadf1 (staffcastfx)
[00:21:36]: Could not unload undefined prefab 0x36458456 (stafflight)
[00:21:36]: Could not unload undefined prefab 0x39ecf974 (cutgrass)
[00:21:36]: Could not unload undefined prefab 0x94e85ed (campfirefire)
[00:21:36]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:21:36]: Could not unload undefined prefab 0x20331a8d (firepit_fanged)
[00:21:36]: Could not unload undefined prefab 0x1d79c25a (firepit_hole)
[00:21:36]: Could not unload undefined prefab 0x71127e3 (carrot_cooked)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x2cabadf1 (staffcastfx)
[00:21:36]: Could not unload undefined prefab 0x36458456 (stafflight)
[00:21:36]: Could not unload undefined prefab 0x39ecf974 (cutgrass)
[00:21:36]: Could not unload undefined prefab 0x359da624 (log)
[00:21:36]: Could not unload undefined prefab 0x29d8efdb (red_leaves_chop)
[00:21:36]: Could not unload undefined prefab 0x39590c78 (orange_leaves_chop)
[00:21:36]: Could not unload undefined prefab 0x2d1c40c (deciduous_root)
[00:21:36]: Could not unload undefined prefab 0x41ba89b5 (nightmarefuel)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x235a9a90 (birchnutdrake)
[00:21:36]: Could not unload undefined prefab 0x20c152ce (collapse_big)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x2d99608b (pumpkin_seeds)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x184178b (meat)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x4790f393 (deciduoustree)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x1549fe9 (explode_small)
[00:21:36]: Could not unload undefined prefab 0x4254b676 (splash_snow_fx)
[00:21:36]: Could not unload undefined prefab 0x184178b (meat)
[00:21:36]: Could not unload undefined prefab 0xe2bfa46 (tophat)
[00:21:36]: Could not unload undefined prefab 0x3abfcfab (pigskin)
[00:21:36]: Could not unload undefined prefab 0x344c1a3f (shadowminer)
[00:21:36]: Could not unload undefined prefab 0x2cabadf1 (staffcastfx)
[00:21:36]: Could not unload undefined prefab 0x36458456 (stafflight)
[00:21:36]: Could not unload undefined prefab 0x39ecf974 (cutgrass)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x18fee34b (brokenwall_ruins)
[00:21:36]: Could not unload undefined prefab 0x359da624 (log)
[00:21:36]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:21:36]: Could not unload undefined prefab 0x706870b6 (green_cap)
[00:21:36]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:21:36]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:21:36]: Could not unload undefined prefab 0x1a35332f (spore_medium)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:21:36]: Could not unload undefined prefab 0x12434e82 (gemsocket)
[00:21:36]: Could not unload undefined prefab 0x30a708a2 (bee)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x24b8f3b (fireflies)
[00:21:36]: Could not unload undefined prefab 0x109a4b4a (mandrakesoup)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x8737b1f4 (hotchili)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x82c1abbd (monsterlasagna)
[00:21:36]: Could not unload undefined prefab 0x113860b0 (powcake)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x8be4c476 (frogglebunwich)
[00:21:36]: Could not unload undefined prefab 0x3e819cf (wetgoop)
[00:21:36]: Could not unload undefined prefab 0x4ad6ef2c (pumpkincookie)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x417d9269 (meatballs)
[00:21:36]: Could not unload undefined prefab 0x1645ce02 (perogies)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x52c59920 (turkeydinner)
[00:21:36]: Could not unload undefined prefab 0x22b6bfb9 (stuffedeggplant)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x3920172a (unagi)
[00:21:36]: Could not unload undefined prefab 0x5cdc5516 (trailmix)
[00:21:36]: Could not unload undefined prefab 0x8405847b (fishsticks)
[00:21:36]: Could not unload undefined prefab 0x2b3f1f65 (jammypreserves)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x7c35f54 (kabobs)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x51e97b1a (ratatouille)
[00:21:36]: Could not unload undefined prefab 0x7adf9a50 (cookpot_survival)
[00:21:36]: Could not unload undefined prefab 0xf1e18b0 (coldfirefire)
[00:21:36]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0xf1e18b0 (coldfirefire)
[00:21:36]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:21:36]: Could not unload undefined prefab 0x20c152ce (collapse_big)
[00:21:36]: Could not unload undefined prefab 0x3fe15911 (durian_cooked)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x816018fb (wall_moonrock)
[00:21:36]: Could not unload undefined prefab 0x59c04273 (wall_moonrock_item_placer)
[00:21:36]: Could not unload undefined prefab 0x8362ab32 (tentacle)
[00:21:36]: Could not unload undefined prefab 0x91d186fb (shadow_despawn)
[00:21:36]: Could not unload undefined prefab 0x41ba89b5 (nightmarefuel)
[00:21:36]: Could not unload undefined prefab 0x8119781a (cookedmandrake)
[00:21:36]: Could not unload undefined prefab 0x8c6be253 (mandrake)
[00:21:36]: Could not unload undefined prefab 0x83232836 (wall_ruins)
[00:21:36]: Could not unload undefined prefab 0x8f9500ae (wall_ruins_item_placer)
[00:21:36]: Could not unload undefined prefab 0x8c6be253 (mandrake)
[00:21:36]: Could not unload undefined prefab 0xa694a25e (mandrake_planted)
[00:21:36]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:21:36]: Could not unload undefined prefab 0x1bdc0692 (shadowduelist)
[00:21:36]: Could not unload undefined prefab 0xf1761cf (bernie_inactive)
[00:21:36]: Could not unload undefined prefab 0xb50c4e4c (pinecone_sapling)
[00:21:36]: Could not unload undefined prefab 0x112002ba (twiggy_nut_sapling)
[00:21:36]: Could not unload undefined prefab 0x320ed27b (plant_normal)
[00:21:36]: Could not unload undefined prefab 0xaa352fa8 (farmrocktall)
[00:21:36]: Could not unload undefined prefab 0x24356d14 (farmrockflat)
[00:21:36]: Could not unload undefined prefab 0x5a2850b7 (stickleft)
[00:21:36]: Could not unload undefined prefab 0x476da331 (burntstickright)
[00:21:36]: Could not unload undefined prefab 0x6fce684 (signleft)
[00:21:36]: Could not unload undefined prefab 0x6a319031 (fencepost)
[00:21:36]: Could not unload undefined prefab 0x6fef50cb (fencepostright)
[00:21:36]: Could not unload undefined prefab 0xb3facc (burntfencepost)
[00:21:36]: Could not unload undefined prefab 0x891047f0 (burntfencepostright)
[00:21:36]: Could not unload undefined prefab 0x359da624 (log)
[00:21:36]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:21:36]: Could not unload undefined prefab 0x706870b6 (green_cap)
[00:21:36]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:21:36]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:21:36]: Could not unload undefined prefab 0xed18eed (spore_small)
[00:21:36]: Could not unload undefined prefab 0x8539b55b (mushtree_small_burntfx)
[00:21:36]: Could not unload undefined prefab 0x994e32df (mushtree_small_bloom_burntfx)
[00:21:36]: Could not unload undefined prefab 0x65eb274a (petals_evil)
[00:21:36]: Could not unload undefined prefab 0x359da624 (log)
[00:21:36]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:21:36]: Could not unload undefined prefab 0x706870b6 (green_cap)
[00:21:36]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:21:36]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:21:36]: Could not unload undefined prefab 0x5286daa7 (spore_tall)
[00:21:36]: Could not unload undefined prefab 0x9db421e9 (mushtree_tall_burntfx)
[00:21:36]: Could not unload undefined prefab 0x4336ea6d (mushtree_tall_bloom_burntfx)
[00:21:36]: Could not unload undefined prefab 0xbc5dcbd5 (poopcloud)
[00:21:36]: Could not unload undefined prefab 0x774f8c02 (snowball)
[00:21:36]: Could not unload undefined prefab 0x4254b676 (splash_snow_fx)
[00:21:36]: Could not unload undefined prefab 0x47329be (firesuppressor_glow)
[00:21:36]: Could not unload undefined prefab 0x184178b (meat)
[00:21:36]: Could not unload undefined prefab 0x359da624 (log)
[00:21:36]: Could not unload undefined prefab 0x1078732c (character_fire)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x9be18af2 (twigs)
[00:21:36]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:21:36]: Could not unload undefined prefab 0x184178b (meat)
[00:21:36]: Could not unload undefined prefab 0x359da624 (log)
[00:21:36]: Could not unload undefined prefab 0x1078732c (character_fire)
[00:21:36]: Could not unload undefined prefab 0x30a708a2 (bee)
[00:21:36]: Could not unload undefined prefab 0x8d0790fc (honeycomb)
[00:21:36]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:21:36]: Could not unload undefined prefab 0x22a4f6ff (bird_egg)
[00:21:36]: Could not unload undefined prefab 0x36b4bd17 (crow)
[00:21:36]: Could not unload undefined prefab 0x9c61daea (robin)
[00:21:36]: Could not unload undefined prefab 0xb8dc9dfa (robin_winter)
[00:21:36]: Could not unload undefined prefab 0xc7e99c14 (guano)
[00:21:36]: Could not unload undefined prefab 0x6d8df54b (wall_hay)
[00:21:36]: Could not unload undefined prefab 0x42632ec3 (wall_hay_item_placer)
[00:21:36]: Could not unload undefined prefab 0x1af6b572 (shadowtentacle)
[00:21:36]: Could not unload undefined prefab 0x94c7685d (ice_projectile)
[00:21:36]: Could not unload undefined prefab 0xc04fd6d2 (fire_projectile)
[00:21:36]: Could not unload undefined prefab 0x2cabadf1 (staffcastfx)
[00:21:36]: Could not unload undefined prefab 0x36458456 (stafflight)
[00:21:36]: Could not unload undefined prefab 0x39ecf974 (cutgrass)
[00:21:36]: Could not unload undefined prefab 0xb2e44c01 (forcefieldfx)
[00:21:36]: Could not unload undefined prefab 0x8362ab32 (tentacle)
[00:21:36]: Could not unload undefined prefab 0xb430ba46 (splash_ocean)
[00:21:36]: Could not unload undefined prefab 0xaeb1c368 (book_fx)
[00:21:36]: Could not unload undefined prefab 0xc4f29869 (petals)
[00:21:36]: Could not unload undefined prefab 0x2ffe1998 (flower_evil)
[00:21:36]: Could not unload undefined prefab 0x491192bf (lightning_rod_fx)
[00:21:36]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:21:36]: Could not unload undefined prefab 0x94c7685d (ice_projectile)
[00:21:36]: Could not unload undefined prefab 0xc04fd6d2 (fire_projectile)
[00:21:36]: Could not unload undefined prefab 0x2cabadf1 (staffcastfx)
[00:21:36]: Could not unload undefined prefab 0x36458456 (stafflight)
[00:21:36]: Could not unload undefined prefab 0x39ecf974 (cutgrass)
[00:21:36]: Could not unload undefined prefab 0xe2f01fef (balloon)
[00:21:36]: Could not unload undefined prefab 0xde56c6a5 (mosquitosack)
[00:21:36]: Could not unload undefined prefab 0x35e3acb2 (berries_cooked)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:21:36]: Could not unload undefined prefab 0x9ce1eaee (rocks)
[00:21:36]: Could not unload undefined prefab 0x7e6d93ac (nitre)
[00:21:36]: Could not unload undefined prefab 0xe5306269 (flint)
[00:21:36]: Could not unload undefined prefab 0xd3c23856 (goldnugget)
[00:21:36]: Could not unload undefined prefab 0xc63a5a5c (moonrocknugget)
[00:21:36]: Could not unload undefined prefab 0xcff76eec (rock_break_fx)
[00:21:36]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:21:36]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:21:36]: Could not unload undefined prefab 0x359da624 (log)
[00:21:36]: Could not unload undefined prefab 0xb7e66933 (pinecone)
[00:21:36]: Could not unload undefined prefab 0xec8853ad (charcoal)
[00:21:36]: Could not unload undefined prefab 0xd30548b6 (leif)
[00:21:36]: Could not unload undefined prefab 0xcf3ff3e9 (leif_sparse)
[00:21:36]: Could not unload undefined prefab 0xb9d7a9d0 (pine_needles_chop)
[00:21:36]: Could not unload undefined prefab 0x78d69cdc (rock_petrified_tree_short)
[00:21:36]: Could not unload undefined prefab 0x4f122f8c (rock_petrified_tree_med)
[00:21:36]: Could not unload undefined prefab 0xe8c52d0d (rock_petrified_tree_tall)
[00:21:36]: Could not unload undefined prefab 0x50155047 (rock_petrified_tree_old)
[00:21:36]: Could not unload undefined prefab 0xaec874c8 (disease_puff)
[00:21:36]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:21:36]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:21:36]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:21:36]: Could not unload undefined prefab 0x674707c2 (acorn_sapling)
[00:21:36]: Could not unload undefined prefab 0x7e58aebd (acorn_cooked)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x757f3023 (pomegranate_cooked)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x830c1c66 (pomegranate_seeds)
[00:21:36]: Could not unload undefined prefab 0xecb2fd20 (eggplant_cooked)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0xd5a44029 (eggplant_seeds)
[00:21:36]: Could not unload undefined prefab 0x92132840 (poop)
[00:21:36]: Could not unload undefined prefab 0xbc74c3cb (bedroll_furry_quilt_white_ivory)
[00:21:36]: Could not unload undefined prefab 0x36b4bd17 (crow)
[00:21:36]: Could not unload undefined prefab 0x9c61daea (robin)
[00:21:36]: Could not unload undefined prefab 0xb8dc9dfa (robin_winter)
[00:21:36]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:21:36]: Could not unload undefined prefab 0x8efaa286 (impact)
[00:21:36]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:21:36]: Could not unload undefined prefab 0x359da624 (log)
[00:21:36]: Could not unload undefined prefab 0x9be18af2 (twigs)
[00:21:36]: Could not unload undefined prefab 0xb0a79a1 (twiggy_nut)
[00:21:36]: Could not unload undefined prefab 0xec8853ad (charcoal)
[00:21:36]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:21:36]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:21:36]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:21:36]: Could not unload undefined prefab 0xca3a1095 (diseaseflies)
[00:21:37]: Mod: workshop-365119238 (SmartCrockPot)    Registering prefabs    
[00:21:37]: Mod: workshop-365119238 (SmartCrockPot)      Registering default mod prefab    
[00:21:37]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Registering prefabs    
[00:21:37]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Registering prefab file: prefabs/mapiconhelper    
[00:21:37]: Mod: workshop-672584952 ([Updated] Complete Your Map)        mapiconhelper    
[00:21:37]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Registering default mod prefab    
[00:21:37]: Mod: workshop-362906105 (Sticky Recipe)    Registering prefabs    
[00:21:37]: Mod: workshop-362906105 (Sticky Recipe)      Registering default mod prefab    
[00:21:37]: Mod: workshop-344071294 (Quick Emotes)    Registering prefabs    
[00:21:37]: Mod: workshop-344071294 (Quick Emotes)      Registering default mod prefab    
[00:21:37]: Mod: workshop-539957958 (Persistent Compass HUD)    Registering prefabs    
[00:21:37]: Mod: workshop-539957958 (Persistent Compass HUD)      Registering default mod prefab    
[00:21:37]: Mod: workshop-367593872 (No More Lag)    Registering prefabs    
[00:21:37]: Mod: workshop-367593872 (No More Lag)      Registering default mod prefab    
[00:21:37]: Mod: workshop-345692228 (Minimap HUD)    Registering prefabs    
[00:21:37]: Mod: workshop-345692228 (Minimap HUD)      Registering default mod prefab    
[00:21:37]: Mod: workshop-661284815 (Improved Force Attack)    Registering prefabs    
[00:21:37]: Mod: workshop-661284815 (Improved Force Attack)      Registering default mod prefab    
[00:21:37]: Mod: workshop-376333686 (Combined Status)    Registering prefabs    
[00:21:37]: Mod: workshop-376333686 (Combined Status)      Registering default mod prefab    
[00:21:37]: Mod: workshop-394612159 (Auto ReTrap)    Registering prefabs    
[00:21:37]: Mod: workshop-394612159 (Auto ReTrap)      Registering default mod prefab    
[00:21:37]: Mod: workshop-609051112 (Action Queue(DST))    Registering prefabs    
[00:21:37]: Mod: workshop-609051112 (Action Queue(DST))      Registering default mod prefab    
[00:21:37]: Mod: workshop-694531911 ( [DST]Aerial view)    Registering prefabs    
[00:21:37]: Mod: workshop-694531911 ( [DST]Aerial view)      Registering default mod prefab    
[00:21:37]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Registering prefabs    
[00:21:37]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Registering prefab file: prefabs/range    
[00:21:37]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])        range_indicator_client    
[00:21:37]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Registering default mod prefab    
[00:21:37]: Mod: workshop-351325790 (Geometric Placement)    Registering prefabs    
[00:21:37]: Mod: workshop-351325790 (Geometric Placement)      Registering prefab file: prefabs/buildgridplacer    
[00:21:37]: Mod: workshop-351325790 (Geometric Placement)        buildgridplacer    
[00:21:37]: Mod: workshop-351325790 (Geometric Placement)      Registering default mod prefab    
[00:21:37]:     LOAD BE    
[00:21:38]:     LOAD BE: done    
[00:21:38]: Loading world: client_temp/server_save    
[00:21:38]: Save file is at version 3    
[00:21:38]: MiniMapComponent::AddAtlas( minimap/minimap_data.xml )
[00:21:38]: MiniMapComponent::AddAtlas( ../mods/workshop-672584952/minimap/moreminimapicons.xml )
[00:21:39]: Loading Nav Grid    
[00:21:39]: Reconstructing topology    
[00:21:39]:     ...Sorting points    
[00:21:39]:     ...Sorting edges    
[00:21:39]:     ...Connecting nodes    
[00:21:39]:     ...Validating connections    
[00:21:39]:     ...Housekeeping    
[00:21:39]:     ...Done!    
[00:21:39]: ModIndex: Load sequence finished successfully.    
[00:21:39]: Reset() returning
[00:21:40]: Attempting to send resume request
[00:21:40]: ReceiveResumeNotification
[00:21:40]: Loading minimap: session/205FAE30949107FC/KU_bPVGW5kg_/minimap
[00:21:40]: Clearing minimap
[00:23:57]: Serializing minimap: session/205FAE30949107FC/KU_bPVGW5kg_/minimap
[00:23:57]: Serializing user: session/90E621F09490DBD1/KU_bPVGW5kg_/0000000001
[00:23:57]: Serializing minimap: session/205FAE30949107FC/KU_bPVGW5kg_/minimap
[00:23:57]: [Shard] Starting connection to destination server...
[00:23:57]: [Shard] Getting info of destination server...
[00:23:57]: Received ID_DST_SHARD_SILENT_DISCONNECT
[00:23:57]: Attempting to send resume request
[00:23:57]: [Shard] OnDestinationInfoResponse Connecting to master=(Y)
[00:23:57]: [Shard] OnDestinationInfoResponse migration info: 86.89.118.65|11000 
[00:23:57]: [Connect] SetMigrationInfo 86.89.118.65|11000 [90103047099061249]
[00:23:57]: unloading prefabs for mod MOD_workshop-365119238    
[00:23:57]: unloading prefabs for mod MOD_workshop-672584952    
[00:23:57]: unloading prefabs for mod MOD_workshop-362906105    
[00:23:57]: unloading prefabs for mod MOD_workshop-344071294    
[00:23:57]: unloading prefabs for mod MOD_workshop-539957958    
[00:23:57]: unloading prefabs for mod MOD_workshop-367593872    
[00:23:57]: unloading prefabs for mod MOD_workshop-345692228    
[00:23:57]: unloading prefabs for mod MOD_workshop-661284815    
[00:23:57]: unloading prefabs for mod MOD_workshop-376333686    
[00:23:57]: unloading prefabs for mod MOD_workshop-394612159    
[00:23:57]: unloading prefabs for mod MOD_workshop-609051112    
[00:23:57]: unloading prefabs for mod MOD_workshop-694531911    
[00:23:57]: unloading prefabs for mod MOD_workshop-522023088    
[00:23:57]: unloading prefabs for mod MOD_workshop-351325790    
[00:23:57]: Collecting garbage...
[00:23:57]: lua_gc took 0.01 seconds
[00:23:57]: ~ShardLuaProxy()
[00:23:57]: ~ItemServerLuaProxy()
[00:23:57]: ~InventoryLuaProxy()
[00:23:57]: ~NetworkLuaProxy()
[00:23:57]: ~SimLuaProxy()
[00:23:57]: SteamWorkshop::CancelDownloads clearing all unfinished downloads
[00:23:57]: lua_close took 0.02 seconds
[00:23:57]: ReleaseAll
[00:23:58]: ReleaseAll Finished
[00:23:58]: cGame::StartPlaying
[00:23:58]: LOADING LUA
[00:23:58]: DoLuaFile scripts/main.lua
[00:23:58]: DoLuaFile loading buffer scripts/main.lua
[00:23:58]: running main.lua
    
[00:23:58]: loaded modindex    
[00:23:58]: ModIndex: Beginning normal load sequence.
    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-344071294    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-345692228    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-351325790    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-362906105    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-365119238    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-367593872    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-394612159    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-522023088    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-539957958    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-609051112    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-661284815    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-672584952    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-694531911    
[00:23:58]: Could not load mod_config_data/modconfiguration_workshop-344071294    
[00:23:58]: Loading mod: workshop-344071294 (Quick Emotes) Version:1.7    
[00:23:58]: loaded mod_config_data/modconfiguration_workshop-345692228    
[00:23:58]: Loading mod: workshop-345692228 (Minimap HUD) Version:1.0.7    
[00:23:58]: loaded mod_config_data/modconfiguration_workshop-351325790    
[00:23:58]: Loading mod: workshop-351325790 (Geometric Placement) Version:2.1.1    
[00:23:58]: Could not load mod_config_data/modconfiguration_workshop-362906105    
[00:23:58]: Loading mod: workshop-362906105 (Sticky Recipe) Version:1.1.2    
[00:23:58]: Could not load mod_config_data/modconfiguration_workshop-365119238    
[00:23:58]: Loading mod: workshop-365119238 (SmartCrockPot) Version:4.02    
[00:23:58]: Could not load mod_config_data/modconfiguration_workshop-367593872    
[00:23:58]: Loading mod: workshop-367593872 (No More Lag) Version:1.1.2    
[00:23:58]: Could not load mod_config_data/modconfiguration_workshop-376333686    
[00:23:58]: Loading mod: workshop-376333686 (Combined Status) Version:1.6.6    
[00:23:58]: Could not load mod_config_data/modconfiguration_workshop-394612159    
[00:23:58]: Loading mod: workshop-394612159 (Auto ReTrap) Version:1.02    
[00:23:58]: Could not load mod_config_data/modconfiguration_workshop-522023088    
[00:23:58]: Loading mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT]) Version:1.2.4    
[00:23:58]: Could not load mod_config_data/modconfiguration_workshop-539957958    
[00:23:58]: Loading mod: workshop-539957958 (Persistent Compass HUD) Version:0.1    
[00:23:58]: Could not load mod_config_data/modconfiguration_workshop-609051112    
[00:23:58]: Loading mod: workshop-609051112 (Action Queue(DST)) Version:1.2.6    
[00:23:58]: Could not load mod_config_data/modconfiguration_workshop-661284815    
[00:23:58]: Loading mod: workshop-661284815 (Improved Force Attack) Version:0.5    
[00:23:58]: loaded mod_config_data/modconfiguration_workshop-672584952    
[00:23:58]: Loading mod: workshop-672584952 ([Updated] Complete Your Map) Version:4.32c    
[00:23:58]: loaded mod_config_data/modconfiguration_workshop-694531911    
[00:23:58]: Loading mod: workshop-694531911 ( [DST]Aerial view) Version:1.1.2    
[00:23:58]: Mod: workshop-365119238 (SmartCrockPot)    Loading modworldgenmain.lua    
[00:23:58]: Mod: workshop-365119238 (SmartCrockPot)      Mod had no modworldgenmain.lua. Skipping.    
[00:23:58]: Mod: workshop-365119238 (SmartCrockPot)    Loading modmain.lua    
[00:23:58]: modimport: ../mods/workshop-365119238/modmain_segments/containerwidgetfunction.lua    
[00:23:58]: modimport: ../mods/workshop-365119238/modmain_segments/containers_setup.lua    
[00:23:58]: modimport: ../mods/workshop-365119238/modmain_segments/action_predict.lua    
[00:23:58]: WARNING: Positional Action parameters are deprecated. Please pass action a table instead.    
[00:23:58]: Action defined at     ../mods/workshop-365119238/modmain_segments/action_predict.lua:1 in (local) result (main) <0-0>    
[00:23:58]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Loading modworldgenmain.lua    
[00:23:58]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Mod had no modworldgenmain.lua. Skipping.    
[00:23:58]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Loading modmain.lua    
[00:23:58]: Mod: workshop-362906105 (Sticky Recipe)    Loading modworldgenmain.lua    
[00:23:58]: Mod: workshop-362906105 (Sticky Recipe)      Mod had no modworldgenmain.lua. Skipping.    
[00:23:58]: Mod: workshop-362906105 (Sticky Recipe)    Loading modmain.lua    
[00:23:58]: Mod: workshop-344071294 (Quick Emotes)    Loading modworldgenmain.lua    
[00:23:58]: Mod: workshop-344071294 (Quick Emotes)      Mod had no modworldgenmain.lua. Skipping.    
[00:23:58]: Mod: workshop-344071294 (Quick Emotes)    Loading modmain.lua    
[00:23:58]: Mod: workshop-539957958 (Persistent Compass HUD)    Loading modworldgenmain.lua    
[00:23:58]: Mod: workshop-539957958 (Persistent Compass HUD)      Mod had no modworldgenmain.lua. Skipping.    
[00:23:58]: Mod: workshop-539957958 (Persistent Compass HUD)    Loading modmain.lua    
[00:23:58]: Mod: workshop-367593872 (No More Lag)    Loading modworldgenmain.lua    
[00:23:58]: Mod: workshop-367593872 (No More Lag)      Mod had no modworldgenmain.lua. Skipping.    
[00:23:58]: Mod: workshop-367593872 (No More Lag)    Loading modmain.lua    
[00:23:58]: Mod: workshop-345692228 (Minimap HUD)    Loading modworldgenmain.lua    
[00:23:58]: Mod: workshop-345692228 (Minimap HUD)      Mod had no modworldgenmain.lua. Skipping.    
[00:23:58]: Mod: workshop-345692228 (Minimap HUD)    Loading modmain.lua    
[00:23:58]: Mod: workshop-661284815 (Improved Force Attack)    Loading modworldgenmain.lua    
[00:23:58]: Mod: workshop-661284815 (Improved Force Attack)      Mod had no modworldgenmain.lua. Skipping.    
[00:23:58]: Mod: workshop-661284815 (Improved Force Attack)    Loading modmain.lua    
[00:23:58]: Mod: workshop-376333686 (Combined Status)    Loading modworldgenmain.lua    
[00:23:58]: Mod: workshop-376333686 (Combined Status)      Mod had no modworldgenmain.lua. Skipping.    
[00:23:58]: Mod: workshop-376333686 (Combined Status)    Loading modmain.lua    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-344071294    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-345692228    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-351325790    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-362906105    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-365119238    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-367593872    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-394612159    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-522023088    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-539957958    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-609051112    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-661284815    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-672584952    
[00:23:58]: ModIndex:GetModsToLoad inserting moddir,     workshop-694531911    
[00:23:58]: Mod: workshop-394612159 (Auto ReTrap)    Loading modworldgenmain.lua    
[00:23:58]: Mod: workshop-394612159 (Auto ReTrap)      Mod had no modworldgenmain.lua. Skipping.    
[00:23:58]: Mod: workshop-394612159 (Auto ReTrap)    Loading modmain.lua    
[00:23:58]: Mod: workshop-609051112 (Action Queue(DST))    Loading modworldgenmain.lua    
[00:23:58]: Mod: workshop-609051112 (Action Queue(DST))      Mod had no modworldgenmain.lua. Skipping.    
[00:23:58]: Mod: workshop-609051112 (Action Queue(DST))    Loading modmain.lua    
[00:23:58]: Mod: workshop-694531911 ( [DST]Aerial view)    Loading modworldgenmain.lua    
[00:23:58]: Mod: workshop-694531911 ( [DST]Aerial view)      Mod had no modworldgenmain.lua. Skipping.    
[00:23:58]: Mod: workshop-694531911 ( [DST]Aerial view)    Loading modmain.lua    
[00:23:58]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Loading modworldgenmain.lua    
[00:23:58]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Mod had no modworldgenmain.lua. Skipping.    
[00:23:58]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Loading modmain.lua    
[00:23:58]: Client Version Running    
[00:23:58]: Mod: workshop-351325790 (Geometric Placement)    Loading modworldgenmain.lua    
[00:23:58]: Mod: workshop-351325790 (Geometric Placement)      Mod had no modworldgenmain.lua. Skipping.    
[00:23:58]: Mod: workshop-351325790 (Geometric Placement)    Loading modmain.lua    
[00:23:58]: LOADING LUA SUCCESS
[00:23:58]: PlayerDeaths loaded morgue    2056    
[00:23:58]: PlayerHistory loaded player_history    11395    
[00:23:58]: bloom_enabled    false    
[00:23:58]: loaded saveindex    
[00:23:58]: OnFilesLoaded()    
[00:23:58]: OnUpdatePurchaseStateComplete    
[00:23:58]: [Connect] Init client connection to 86.89.118.65|11000
[00:23:58]: [Connect] PendingConnection::Reset(true)
[00:23:58]: [Steam] Game Connection terminated (1098275158|11001)
[00:23:58]: [Shard] Stopping shard mode
[00:23:58]: SteamWorkshop::CancelDownloads clearing all unfinished downloads
[00:23:58]: [Connect] InternalInitClient <7758078323622321645>
[00:23:58]: [Shard] Starting shard mode as player
[00:23:58]: [Connect] No server listing found for <UNASSIGNED_RAKNET_GUID>
[00:23:58]: [Connect] Sending ping(s)...
[00:23:58]: [Connect] Ping 86.89.118.65|11000
[00:23:58]: ModIndex: Load sequence finished successfully.    
[00:23:58]: Reset() returning
[00:23:58]: [Connect] Ping response from 86.89.118.65|11000
[00:23:58]: [Connect] Joining server from ping response...
[00:23:58]: [Connect] Got join server response from lua
[00:23:59]: [200] Account Communication Success (13)
[00:23:59]: [Connect] PendingConnectionDoConnect to 86.89.118.65|11000
[00:23:59]: [Connect] DirectConnect to 86.89.118.65|11000
[00:23:59]: Connection accepted to 86.89.118.65|11000 <16915548013395816059>
[00:23:59]: Network external address discovered: 86.25.97.9|63075
[00:23:59]: SendClientHandShakePacket "re^eyJVc2VySUQiOiJLVV9iUFZHVzVrZyIsIkdhbWUiOiJEb250U3RhcnZlVG9nZXRoZXIiLCJQdXJwb3NlIjoiR2FtZVNlc3Npb24ifQ==^6WIQW9kMuR4zTScYQipE4ibvs0c4frl7" to <16915548013395816059>
[00:24:00]: DeserializeHandShakeServerListing
[00:24:00]: Network tick rate: U=10(3), D=15
[00:24:00]: Version: 186853
[00:24:00]: [Steam] Game Connection initiated
[00:24:01]: Begin Session: 90E621F09490DBD1
[00:24:01]: Done Downloading Client Object Data
[00:24:01]: DownloadMods and temp disable    
[00:24:01]: Downloading [3] From: server_temp
[00:24:01]: 3 (40%) 1/1 server_temp/server_save 114000b / 283287b
[00:24:01]: 3 (80%) 1/1 server_temp/server_save 228000b / 283287b
[00:24:01]: 3 (100%) 1/1 server_temp/server_save 283287b / 283287b
[00:24:01]: Download complete[3] Files: 1 Size: 283287
[00:24:02]: Collecting garbage...
[00:24:02]: lua_gc took 0.02 seconds
[00:24:02]: ~ShardLuaProxy()
[00:24:02]: ~ItemServerLuaProxy()
[00:24:02]: ~InventoryLuaProxy()
[00:24:02]: ~NetworkLuaProxy()
[00:24:02]: ~SimLuaProxy()
[00:24:02]: SteamWorkshop::CancelDownloads clearing all unfinished downloads
[00:24:02]: lua_close took 0.02 seconds
[00:24:02]: ReleaseAll
[00:24:02]: ReleaseAll Finished
[00:24:02]: cGame::StartPlaying
[00:24:02]: LOADING LUA
[00:24:02]: DoLuaFile scripts/main.lua
[00:24:02]: DoLuaFile loading buffer scripts/main.lua
[00:24:02]: running main.lua
    
[00:24:02]: loaded modindex    
[00:24:02]: ModIndex: Beginning normal load sequence.
    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-344071294    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-345692228    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-351325790    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-362906105    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-365119238    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-367593872    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-394612159    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-522023088    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-539957958    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-609051112    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-661284815    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-672584952    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-694531911    
[00:24:02]: Could not load mod_config_data/modconfiguration_workshop-344071294    
[00:24:02]: Loading mod: workshop-344071294 (Quick Emotes) Version:1.7    
[00:24:02]: loaded mod_config_data/modconfiguration_workshop-345692228    
[00:24:02]: Loading mod: workshop-345692228 (Minimap HUD) Version:1.0.7    
[00:24:02]: loaded mod_config_data/modconfiguration_workshop-351325790    
[00:24:02]: Loading mod: workshop-351325790 (Geometric Placement) Version:2.1.1    
[00:24:02]: Could not load mod_config_data/modconfiguration_workshop-362906105    
[00:24:02]: Loading mod: workshop-362906105 (Sticky Recipe) Version:1.1.2    
[00:24:02]: Could not load mod_config_data/modconfiguration_workshop-365119238    
[00:24:02]: Loading mod: workshop-365119238 (SmartCrockPot) Version:4.02    
[00:24:02]: Could not load mod_config_data/modconfiguration_workshop-367593872    
[00:24:02]: Loading mod: workshop-367593872 (No More Lag) Version:1.1.2    
[00:24:02]: Could not load mod_config_data/modconfiguration_workshop-376333686    
[00:24:02]: Loading mod: workshop-376333686 (Combined Status) Version:1.6.6    
[00:24:02]: Could not load mod_config_data/modconfiguration_workshop-394612159    
[00:24:02]: Loading mod: workshop-394612159 (Auto ReTrap) Version:1.02    
[00:24:02]: Could not load mod_config_data/modconfiguration_workshop-522023088    
[00:24:02]: Loading mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT]) Version:1.2.4    
[00:24:02]: Could not load mod_config_data/modconfiguration_workshop-539957958    
[00:24:02]: Loading mod: workshop-539957958 (Persistent Compass HUD) Version:0.1    
[00:24:02]: Could not load mod_config_data/modconfiguration_workshop-609051112    
[00:24:02]: Loading mod: workshop-609051112 (Action Queue(DST)) Version:1.2.6    
[00:24:02]: Could not load mod_config_data/modconfiguration_workshop-661284815    
[00:24:02]: Loading mod: workshop-661284815 (Improved Force Attack) Version:0.5    
[00:24:02]: loaded mod_config_data/modconfiguration_workshop-672584952    
[00:24:02]: Loading mod: workshop-672584952 ([Updated] Complete Your Map) Version:4.32c    
[00:24:02]: loaded mod_config_data/modconfiguration_workshop-694531911    
[00:24:02]: Loading mod: workshop-694531911 ( [DST]Aerial view) Version:1.1.2    
[00:24:02]: Mod: workshop-365119238 (SmartCrockPot)    Loading modworldgenmain.lua    
[00:24:02]: Mod: workshop-365119238 (SmartCrockPot)      Mod had no modworldgenmain.lua. Skipping.    
[00:24:02]: Mod: workshop-365119238 (SmartCrockPot)    Loading modmain.lua    
[00:24:02]: modimport: ../mods/workshop-365119238/modmain_segments/containerwidgetfunction.lua    
[00:24:02]: modimport: ../mods/workshop-365119238/modmain_segments/containers_setup.lua    
[00:24:02]: modimport: ../mods/workshop-365119238/modmain_segments/action_predict.lua    
[00:24:02]: WARNING: Positional Action parameters are deprecated. Please pass action a table instead.    
[00:24:02]: Action defined at     ../mods/workshop-365119238/modmain_segments/action_predict.lua:1 in (local) result (main) <0-0>    
[00:24:02]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Loading modworldgenmain.lua    
[00:24:02]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Mod had no modworldgenmain.lua. Skipping.    
[00:24:02]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Loading modmain.lua    
[00:24:02]: Mod: workshop-362906105 (Sticky Recipe)    Loading modworldgenmain.lua    
[00:24:02]: Mod: workshop-362906105 (Sticky Recipe)      Mod had no modworldgenmain.lua. Skipping.    
[00:24:02]: Mod: workshop-362906105 (Sticky Recipe)    Loading modmain.lua    
[00:24:02]: Mod: workshop-344071294 (Quick Emotes)    Loading modworldgenmain.lua    
[00:24:02]: Mod: workshop-344071294 (Quick Emotes)      Mod had no modworldgenmain.lua. Skipping.    
[00:24:02]: Mod: workshop-344071294 (Quick Emotes)    Loading modmain.lua    
[00:24:02]: Mod: workshop-539957958 (Persistent Compass HUD)    Loading modworldgenmain.lua    
[00:24:02]: Mod: workshop-539957958 (Persistent Compass HUD)      Mod had no modworldgenmain.lua. Skipping.    
[00:24:02]: Mod: workshop-539957958 (Persistent Compass HUD)    Loading modmain.lua    
[00:24:02]: Mod: workshop-367593872 (No More Lag)    Loading modworldgenmain.lua    
[00:24:02]: Mod: workshop-367593872 (No More Lag)      Mod had no modworldgenmain.lua. Skipping.    
[00:24:02]: Mod: workshop-367593872 (No More Lag)    Loading modmain.lua    
[00:24:02]: Mod: workshop-345692228 (Minimap HUD)    Loading modworldgenmain.lua    
[00:24:02]: Mod: workshop-345692228 (Minimap HUD)      Mod had no modworldgenmain.lua. Skipping.    
[00:24:02]: Mod: workshop-345692228 (Minimap HUD)    Loading modmain.lua    
[00:24:02]: Mod: workshop-661284815 (Improved Force Attack)    Loading modworldgenmain.lua    
[00:24:02]: Mod: workshop-661284815 (Improved Force Attack)      Mod had no modworldgenmain.lua. Skipping.    
[00:24:02]: Mod: workshop-661284815 (Improved Force Attack)    Loading modmain.lua    
[00:24:02]: Mod: workshop-376333686 (Combined Status)    Loading modworldgenmain.lua    
[00:24:02]: Mod: workshop-376333686 (Combined Status)      Mod had no modworldgenmain.lua. Skipping.    
[00:24:02]: Mod: workshop-376333686 (Combined Status)    Loading modmain.lua    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-344071294    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-345692228    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-351325790    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-362906105    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-365119238    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-367593872    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-394612159    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-522023088    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-539957958    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-609051112    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-661284815    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-672584952    
[00:24:02]: ModIndex:GetModsToLoad inserting moddir,     workshop-694531911    
[00:24:02]: Mod: workshop-394612159 (Auto ReTrap)    Loading modworldgenmain.lua    
[00:24:02]: Mod: workshop-394612159 (Auto ReTrap)      Mod had no modworldgenmain.lua. Skipping.    
[00:24:02]: Mod: workshop-394612159 (Auto ReTrap)    Loading modmain.lua    
[00:24:02]: Mod: workshop-609051112 (Action Queue(DST))    Loading modworldgenmain.lua    
[00:24:02]: Mod: workshop-609051112 (Action Queue(DST))      Mod had no modworldgenmain.lua. Skipping.    
[00:24:02]: Mod: workshop-609051112 (Action Queue(DST))    Loading modmain.lua    
[00:24:02]: Mod: workshop-694531911 ( [DST]Aerial view)    Loading modworldgenmain.lua    
[00:24:02]: Mod: workshop-694531911 ( [DST]Aerial view)      Mod had no modworldgenmain.lua. Skipping.    
[00:24:02]: Mod: workshop-694531911 ( [DST]Aerial view)    Loading modmain.lua    
[00:24:02]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Loading modworldgenmain.lua    
[00:24:02]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Mod had no modworldgenmain.lua. Skipping.    
[00:24:02]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Loading modmain.lua    
[00:24:02]: Client Version Running    
[00:24:02]: Mod: workshop-351325790 (Geometric Placement)    Loading modworldgenmain.lua    
[00:24:02]: Mod: workshop-351325790 (Geometric Placement)      Mod had no modworldgenmain.lua. Skipping.    
[00:24:02]: Mod: workshop-351325790 (Geometric Placement)    Loading modmain.lua    
[00:24:02]: LOADING LUA SUCCESS
[00:24:02]: PlayerDeaths loaded morgue    2056    
[00:24:02]: PlayerHistory loaded player_history    11395    
[00:24:02]: bloom_enabled    false    
[00:24:02]: loaded saveindex    
[00:24:02]: OnFilesLoaded()    
[00:24:02]: OnUpdatePurchaseStateComplete    
[00:24:02]:     Unload FE    
[00:24:02]:     Unload FE done    
[00:24:02]: Could not unload undefined prefab 0x184178b (meat)
[00:24:02]: Could not unload undefined prefab 0x1951bb3 (merm)
[00:24:02]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:24:02]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:24:02]: Could not unload undefined prefab 0x184178b (meat)
[00:24:02]: Could not unload undefined prefab 0x116a891d (backpack_mushy)
[00:24:02]: Could not unload undefined prefab 0x12d1229f (backpack_poop)
[00:24:02]: Could not unload undefined prefab 0x138df44d (hutch_move_fx)
[00:24:02]: Could not unload undefined prefab 0x1a35332f (spore_medium)
[00:24:02]: Could not unload undefined prefab 0x94e85ed (campfirefire)
[00:24:02]: Could not unload undefined prefab 0x1baa7bae (firehound)
[00:24:02]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:24:02]: Could not unload undefined prefab 0x184178b (meat)
[00:24:02]: Could not unload undefined prefab 0x6d4e973 (spat_splash_fx_full)
[00:24:02]: Could not unload undefined prefab 0x162c669d (marble)
[00:24:02]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:24:02]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:24:02]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:24:02]: Could not unload undefined prefab 0x6647de8 (wall_stone_item_placer)
[00:24:02]: Could not unload undefined prefab 0x24356d14 (farmrockflat)
[00:24:02]: Could not unload undefined prefab 0x6fce684 (signleft)
[00:24:02]: Could not unload undefined prefab 0xb3facc (burntfencepost)
[00:24:02]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:24:02]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:24:02]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:24:02]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x222dd5a3 (torch_shadow)
[00:24:02]: Could not unload undefined prefab 0x162c669d (marble)
[00:24:02]: Could not unload undefined prefab 0x1549fe9 (explode_small)
[00:24:02]: Could not unload undefined prefab 0x1549fe9 (explode_small)
[00:24:02]: Could not unload undefined prefab 0x1549fe9 (explode_small)
[00:24:02]: Could not unload undefined prefab 0x1549fe9 (explode_small)
[00:24:02]: Could not unload undefined prefab 0x2132defc (warningshadow)
[00:24:02]: Could not unload undefined prefab 0xead0d51 (cavelight_small)
[00:24:02]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:24:02]: Could not unload undefined prefab 0x9d92cce (purpleamulet)
[00:24:02]: Could not unload undefined prefab 0x2ca456a0 (orangeamulet)
[00:24:02]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:24:02]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:24:02]: Could not unload undefined prefab 0x1765df93 (monkey)
[00:24:02]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:24:02]: Could not unload undefined prefab 0x9d92cce (purpleamulet)
[00:24:02]: Could not unload undefined prefab 0x2ca456a0 (orangeamulet)
[00:24:02]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:24:02]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:24:02]: Could not unload undefined prefab 0x1765df93 (monkey)
[00:24:02]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:24:02]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:24:02]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:24:02]: Could not unload undefined prefab 0x1ad851d9 (mushtree_medium)
[00:24:02]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:24:02]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:24:02]: Could not unload undefined prefab 0xed18eed (spore_small)
[00:24:02]: Could not unload undefined prefab 0x16f0b2bb (mushtree_tall_webbed)
[00:24:02]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:24:02]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:24:02]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:24:02]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:24:02]: Could not unload undefined prefab 0x2aee1328 (tentacle_pillar_hole)
[00:24:02]: Could not unload undefined prefab 0xf57ee3 (rockyherd)
[00:24:02]: Could not unload undefined prefab 0x1765df93 (monkey)
[00:24:02]: Could not unload undefined prefab 0x1765df93 (monkey)
[00:24:02]: Could not unload undefined prefab 0x1078732c (character_fire)
[00:24:02]: Could not unload undefined prefab 0x1549fe9 (explode_small)
[00:24:02]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:24:02]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:24:02]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:24:02]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:24:02]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:24:02]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:24:02]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:24:02]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:24:02]: Could not unload undefined prefab 0x291cde91 (ruins_vase)
[00:24:02]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:24:02]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:24:02]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:24:02]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:24:02]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:24:02]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:24:02]: Could not unload undefined prefab 0x38050c (ruins_rubble_vase)
[00:24:02]: Could not unload undefined prefab 0x2cf27a76 (bishop_charge)
[00:24:02]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:24:02]: Could not unload undefined prefab 0x162c669d (marble)
[00:24:02]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:24:02]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:24:02]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:24:02]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:24:02]: Could not unload undefined prefab 0x162c669d (marble)
[00:24:02]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:24:02]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:24:02]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:24:02]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:24:02]: Could not unload undefined prefab 0x162c669d (marble)
[00:24:02]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:24:02]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:24:02]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:24:02]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:24:02]: Could not unload undefined prefab 0x162c669d (marble)
[00:24:02]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:24:02]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:24:02]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:24:02]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:24:02]: Could not unload undefined prefab 0x20cd7317 (nightmarelight)
[00:24:02]: Could not unload undefined prefab 0x111c8fe5 (fissure)
[00:24:02]: Could not unload undefined prefab 0x184178b (meat)
[00:24:02]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:24:02]: Could not unload undefined prefab 0x2824710f (spider_web_spit_creep)
[00:24:02]: Could not unload undefined prefab 0x23085961 (caverain)
[00:24:02]: Could not unload undefined prefab 0x21823186 (dropperweb)
[00:24:02]: Could not unload undefined prefab 0x15261eec (hutch)
[00:24:02]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:24:02]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:24:02]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:24:02]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:24:02]: Could not unload undefined prefab 0xb1e7b61 (dragonfruit)
[00:24:02]: Could not unload undefined prefab 0x2b3fb01c (watermelon)
[00:24:02]: Could not unload undefined prefab 0x13897ec9 (berries_juicy)
[00:24:02]: Could not unload undefined prefab 0x1047b105 (evergreen)
[00:24:02]: Could not unload undefined prefab 0x9caab61 (evergreen_normal)
[00:24:02]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:24:02]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:24:02]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:24:02]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:24:02]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:24:02]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:24:02]: Could not unload undefined prefab 0xa5cdb4c (evergreen_sparse_normal)
[00:24:02]: Could not unload undefined prefab 0x6d765b7 (evergreen_sparse_short)
[00:24:02]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:24:02]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:24:02]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:24:02]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:24:02]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:24:02]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:24:02]: Could not unload undefined prefab 0x204c651d (evergreen_stump)
[00:24:02]: Could not unload undefined prefab 0xb0a79a1 (twiggy_nut)
[00:24:02]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:24:02]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:24:02]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:24:02]: Could not unload undefined prefab 0xb0a79a1 (twiggy_nut)
[00:24:02]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:24:02]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:24:02]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:24:02]: Could not unload undefined prefab 0xb0a79a1 (twiggy_nut)
[00:24:02]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:24:02]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:24:02]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:24:02]: Could not unload undefined prefab 0x28861538 (sapling)
[00:24:02]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:24:02]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:24:02]: Could not unload undefined prefab 0x217a7c34 (berrybush2)
[00:24:02]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:24:02]: Could not unload undefined prefab 0x87f86db (rock_moon)
[00:24:02]: Could not unload undefined prefab 0x107c65e6 (tallbird)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x1baa7bae (firehound)
[00:24:02]: Could not unload undefined prefab 0x2747c45b (krampus)
[00:24:02]: Could not unload undefined prefab 0x19c004b2 (pighouse)
[00:24:02]: Could not unload undefined prefab 0x2571d493 (butterfly)
[00:24:02]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:24:02]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:24:02]: Could not unload undefined prefab 0x24b8f3b (fireflies)
[00:24:02]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:24:02]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:24:02]: Could not unload undefined prefab 0x2f85395e (turf_savanna)
[00:24:02]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:24:02]: Could not unload undefined prefab 0x31b9f5e7 (turf_forest)
[00:24:02]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:24:02]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:24:02]: Could not unload undefined prefab 0x10270c70 (turf_fungus)
[00:24:02]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:24:02]: Could not unload undefined prefab 0x59d5dd3 (turf_underrock)
[00:24:02]: Could not unload undefined prefab 0x2fbde1f2 (turf_mud)
[00:24:02]: Could not unload undefined prefab 0x1bd1b038 (insanityrock)
[00:24:02]: Could not unload undefined prefab 0x1c6b2805 (houndmound)
[00:24:02]: Could not unload undefined prefab 0x184178b (meat)
[00:24:02]: Could not unload undefined prefab 0xe2bfa46 (tophat)
[00:24:02]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:24:02]: Could not unload undefined prefab 0x2368cc34 (green_mushroom)
[00:24:02]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:24:02]: Could not unload undefined prefab 0x67ff1ed (mermhouse)
[00:24:02]: Could not unload undefined prefab 0x2ffe1998 (flower_evil)
[00:24:02]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:24:02]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:24:02]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:24:02]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:24:02]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:24:02]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:24:02]: Could not unload undefined prefab 0x2cf27a76 (bishop_charge)
[00:24:02]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:24:02]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:24:02]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:24:02]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:24:02]: Could not unload undefined prefab 0x29d8efdb (red_leaves_chop)
[00:24:02]: Could not unload undefined prefab 0x2d1c40c (deciduous_root)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x235a9a90 (birchnutdrake)
[00:24:02]: Could not unload undefined prefab 0x29d8efdb (red_leaves_chop)
[00:24:02]: Could not unload undefined prefab 0x2d1c40c (deciduous_root)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x235a9a90 (birchnutdrake)
[00:24:02]: Could not unload undefined prefab 0x29d8efdb (red_leaves_chop)
[00:24:02]: Could not unload undefined prefab 0x2d1c40c (deciduous_root)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x235a9a90 (birchnutdrake)
[00:24:02]: Could not unload undefined prefab 0x29d8efdb (red_leaves_chop)
[00:24:02]: Could not unload undefined prefab 0x2d1c40c (deciduous_root)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x235a9a90 (birchnutdrake)
[00:24:02]: Could not unload undefined prefab 0x29d8efdb (red_leaves_chop)
[00:24:02]: Could not unload undefined prefab 0x2d1c40c (deciduous_root)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x235a9a90 (birchnutdrake)
[00:24:02]: Could not unload undefined prefab 0x32d080ea (drumstick)
[00:24:02]: Could not unload undefined prefab 0x18c46cd (glommerfuel)
[00:24:02]: Could not unload undefined prefab 0x11c7d51 (glommerwings)
[00:24:02]: Could not unload undefined prefab 0x162c669d (marble)
[00:24:02]: Could not unload undefined prefab 0x32fc24ed (cactus_flower)
[00:24:02]: Could not unload undefined prefab 0x2bcce899 (writeable_classified)
[00:24:02]: Could not unload undefined prefab 0x3306d1dc (thunder_far)
[00:24:02]: Could not unload undefined prefab 0x1796bd2a (lightning)
[00:24:02]: Could not unload undefined prefab 0x162c669d (marble)
[00:24:02]: Could not unload undefined prefab 0x184178b (meat)
[00:24:02]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:24:02]: Could not unload undefined prefab 0x184178b (meat)
[00:24:02]: Could not unload undefined prefab 0x184178b (meat)
[00:24:02]: Could not unload undefined prefab 0x1ddfa303 (horn)
[00:24:02]: Could not unload undefined prefab 0x22a4f6ff (bird_egg)
[00:24:02]: Could not unload undefined prefab 0x32d080ea (drumstick)
[00:24:02]: Could not unload undefined prefab 0x22a4f6ff (bird_egg)
[00:24:02]: Could not unload undefined prefab 0x184178b (meat)
[00:24:02]: Could not unload undefined prefab 0xb03e93a (trunk_summer)
[00:24:02]: Could not unload undefined prefab 0x184178b (meat)
[00:24:02]: Could not unload undefined prefab 0xb03e93a (trunk_summer)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x30a708a2 (bee)
[00:24:02]: Could not unload undefined prefab 0x184178b (meat)
[00:24:02]: Could not unload undefined prefab 0x2e264dbc (blowdart_pipe)
[00:24:02]: Could not unload undefined prefab 0x67bb53b (mole)
[00:24:02]: Could not unload undefined prefab 0x27bb85c8 (cave_entrance)
[00:24:02]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:24:02]: Could not unload undefined prefab 0x3de9fbd (teleportato_box)
[00:24:02]: Could not unload undefined prefab 0x45ac955 (teleportato_potato)
[00:24:02]: Could not unload undefined prefab 0x1f5630bd (dug_marsh_bush)
[00:24:02]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:24:02]: Could not unload undefined prefab 0x38e59fd (mist)
[00:24:02]: Could not unload undefined prefab 0x1d298b03 (snow)
[00:24:02]: Could not unload undefined prefab 0x162c669d (marble)
[00:24:02]: Could not unload undefined prefab 0x162c669d (marble)
[00:24:02]: Could not unload undefined prefab 0x2c507dbb (statueharp)
[00:24:02]: Could not unload undefined prefab 0x1e508f2e (statuemaxwell)
[00:24:02]: Could not unload undefined prefab 0x9d92cce (purpleamulet)
[00:24:02]: Could not unload undefined prefab 0x1765df93 (monkey)
[00:24:02]: Could not unload undefined prefab 0x67bb53b (mole)
[00:24:02]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:24:02]: Could not unload undefined prefab 0x30a708a2 (bee)
[00:24:02]: Could not unload undefined prefab 0xf174236 (feather_robin_winter)
[00:24:02]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:24:02]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:24:02]: Could not unload undefined prefab 0xc01796b (corn_seeds)
[00:24:02]: Could not unload undefined prefab 0x2d99608b (pumpkin_seeds)
[00:24:02]: Could not unload undefined prefab 0x2571d493 (butterfly)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x1eee0485 (transistor)
[00:24:02]: Could not unload undefined prefab 0x1c86b389 (froglegs)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:24:02]: Could not unload undefined prefab 0x6dddac (shadowmeteor)
[00:24:02]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:24:02]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:24:02]: Could not unload undefined prefab 0x1baa7bae (firehound)
[00:24:02]: Could not unload undefined prefab 0x1e17a690 (spat)
[00:24:02]: Could not unload undefined prefab 0x30bdcde6 (lavae_move_fx)
[00:24:02]: Could not unload undefined prefab 0xdcd8f65 (crawlinghorror)
[00:24:02]: Could not unload undefined prefab 0x25fd132f (shadowhand)
[00:24:02]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:24:02]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:24:02]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:24:02]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:24:02]: Could not unload undefined prefab 0x107f3fc2 (seeds)
[00:24:02]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:24:02]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:24:02]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:24:02]: Could not unload undefined prefab 0x107f3fc2 (seeds)
[00:24:02]: Could not unload undefined prefab 0xf174236 (feather_robin_winter)
[00:24:02]: Could not unload undefined prefab 0x67bb53b (mole)
[00:24:02]: Could not unload undefined prefab 0x24b8f3b (fireflies)
[00:24:02]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:24:02]: Could not unload undefined prefab 0x1c86b389 (froglegs)
[00:24:02]: Could not unload undefined prefab 0x86a562b (frogsplash)
[00:24:02]: Could not unload undefined prefab 0x30a708a2 (bee)
[00:24:02]: Could not unload undefined prefab 0xcc84da (moose_nest_fx_idle)
[00:24:02]: Could not unload undefined prefab 0x68af69d (goose_feather)
[00:24:02]: Could not unload undefined prefab 0x32d080ea (drumstick)
[00:24:02]: Could not unload undefined prefab 0x68af69d (goose_feather)
[00:24:02]: Could not unload undefined prefab 0x32d080ea (drumstick)
[00:24:02]: Could not unload undefined prefab 0x5bf8db2 (furtuft)
[00:24:02]: Could not unload undefined prefab 0xc2dcfd4 (firesplash_fx)
[00:24:02]: Could not unload undefined prefab 0x217767f3 (attackfire_fx)
[00:24:02]: Could not unload undefined prefab 0x19f41fd5 (dragon_scales)
[00:24:02]: Could not unload undefined prefab 0x30bdcde6 (lavae_move_fx)
[00:24:02]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:24:02]: Could not unload undefined prefab 0x184178b (meat)
[00:24:02]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:24:02]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:24:02]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:24:02]: Could not unload undefined prefab 0x1cba00e4 (chester_eyebone)
[00:24:02]: Could not unload undefined prefab 0xc2804d5 (sps_berrybush)
[00:24:02]: Could not unload undefined prefab 0x13897ec9 (berries_juicy)
[00:24:02]: Could not unload undefined prefab 0x269656ca (dug_berrybush_juicy)
[00:24:02]: Could not unload undefined prefab 0x32d080ea (drumstick)
[00:24:02]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:24:02]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:24:02]: Could not unload undefined prefab 0x266c2f16 (houndwarning_lvl1)
[00:24:02]: Could not unload undefined prefab 0x266c2f17 (houndwarning_lvl2)
[00:24:02]: Could not unload undefined prefab 0x266c2f18 (houndwarning_lvl3)
[00:24:02]: Could not unload undefined prefab 0x266c2f19 (houndwarning_lvl4)
[00:24:02]: Could not unload undefined prefab 0x28b9400d (deerclopswarning_lvl1)
[00:24:02]: Could not unload undefined prefab 0x28b9400e (deerclopswarning_lvl2)
[00:24:02]: Could not unload undefined prefab 0x28b9400f (deerclopswarning_lvl3)
[00:24:02]: Could not unload undefined prefab 0x28b94010 (deerclopswarning_lvl4)
[00:24:02]: Could not unload undefined prefab 0x1399a452 (beargerwarning_lvl1)
[00:24:02]: Could not unload undefined prefab 0x1399a453 (beargerwarning_lvl2)
[00:24:02]: Could not unload undefined prefab 0x1399a454 (beargerwarning_lvl3)
[00:24:02]: Could not unload undefined prefab 0x1399a455 (beargerwarning_lvl4)
[00:24:02]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0xc01796b (corn_seeds)
[00:24:02]: Could not unload undefined prefab 0x2cabadf1 (staffcastfx)
[00:24:02]: Could not unload undefined prefab 0x36458456 (stafflight)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x2cabadf1 (staffcastfx)
[00:24:02]: Could not unload undefined prefab 0x36458456 (stafflight)
[00:24:02]: Could not unload undefined prefab 0x39ecf974 (cutgrass)
[00:24:02]: Could not unload undefined prefab 0x94e85ed (campfirefire)
[00:24:02]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:24:02]: Could not unload undefined prefab 0x20331a8d (firepit_fanged)
[00:24:02]: Could not unload undefined prefab 0x1d79c25a (firepit_hole)
[00:24:02]: Could not unload undefined prefab 0x71127e3 (carrot_cooked)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x2cabadf1 (staffcastfx)
[00:24:02]: Could not unload undefined prefab 0x36458456 (stafflight)
[00:24:02]: Could not unload undefined prefab 0x39ecf974 (cutgrass)
[00:24:02]: Could not unload undefined prefab 0x359da624 (log)
[00:24:02]: Could not unload undefined prefab 0x29d8efdb (red_leaves_chop)
[00:24:02]: Could not unload undefined prefab 0x39590c78 (orange_leaves_chop)
[00:24:02]: Could not unload undefined prefab 0x2d1c40c (deciduous_root)
[00:24:02]: Could not unload undefined prefab 0x41ba89b5 (nightmarefuel)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x235a9a90 (birchnutdrake)
[00:24:02]: Could not unload undefined prefab 0x20c152ce (collapse_big)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x2d99608b (pumpkin_seeds)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x184178b (meat)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x4790f393 (deciduoustree)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x1549fe9 (explode_small)
[00:24:02]: Could not unload undefined prefab 0x4254b676 (splash_snow_fx)
[00:24:02]: Could not unload undefined prefab 0x184178b (meat)
[00:24:02]: Could not unload undefined prefab 0xe2bfa46 (tophat)
[00:24:02]: Could not unload undefined prefab 0x3abfcfab (pigskin)
[00:24:02]: Could not unload undefined prefab 0x344c1a3f (shadowminer)
[00:24:02]: Could not unload undefined prefab 0x2cabadf1 (staffcastfx)
[00:24:02]: Could not unload undefined prefab 0x36458456 (stafflight)
[00:24:02]: Could not unload undefined prefab 0x39ecf974 (cutgrass)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x18fee34b (brokenwall_ruins)
[00:24:02]: Could not unload undefined prefab 0x359da624 (log)
[00:24:02]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:24:02]: Could not unload undefined prefab 0x706870b6 (green_cap)
[00:24:02]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:24:02]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:24:02]: Could not unload undefined prefab 0x1a35332f (spore_medium)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:24:02]: Could not unload undefined prefab 0x12434e82 (gemsocket)
[00:24:02]: Could not unload undefined prefab 0x30a708a2 (bee)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x24b8f3b (fireflies)
[00:24:02]: Could not unload undefined prefab 0x109a4b4a (mandrakesoup)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x8737b1f4 (hotchili)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x82c1abbd (monsterlasagna)
[00:24:02]: Could not unload undefined prefab 0x113860b0 (powcake)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x8be4c476 (frogglebunwich)
[00:24:02]: Could not unload undefined prefab 0x3e819cf (wetgoop)
[00:24:02]: Could not unload undefined prefab 0x4ad6ef2c (pumpkincookie)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x417d9269 (meatballs)
[00:24:02]: Could not unload undefined prefab 0x1645ce02 (perogies)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x52c59920 (turkeydinner)
[00:24:02]: Could not unload undefined prefab 0x22b6bfb9 (stuffedeggplant)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x3920172a (unagi)
[00:24:02]: Could not unload undefined prefab 0x5cdc5516 (trailmix)
[00:24:02]: Could not unload undefined prefab 0x8405847b (fishsticks)
[00:24:02]: Could not unload undefined prefab 0x2b3f1f65 (jammypreserves)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x7c35f54 (kabobs)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x51e97b1a (ratatouille)
[00:24:02]: Could not unload undefined prefab 0x7adf9a50 (cookpot_survival)
[00:24:02]: Could not unload undefined prefab 0xf1e18b0 (coldfirefire)
[00:24:02]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0xf1e18b0 (coldfirefire)
[00:24:02]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:24:02]: Could not unload undefined prefab 0x20c152ce (collapse_big)
[00:24:02]: Could not unload undefined prefab 0x3fe15911 (durian_cooked)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x816018fb (wall_moonrock)
[00:24:02]: Could not unload undefined prefab 0x59c04273 (wall_moonrock_item_placer)
[00:24:02]: Could not unload undefined prefab 0x8362ab32 (tentacle)
[00:24:02]: Could not unload undefined prefab 0x91d186fb (shadow_despawn)
[00:24:02]: Could not unload undefined prefab 0x41ba89b5 (nightmarefuel)
[00:24:02]: Could not unload undefined prefab 0x8119781a (cookedmandrake)
[00:24:02]: Could not unload undefined prefab 0x8c6be253 (mandrake)
[00:24:02]: Could not unload undefined prefab 0x83232836 (wall_ruins)
[00:24:02]: Could not unload undefined prefab 0x8f9500ae (wall_ruins_item_placer)
[00:24:02]: Could not unload undefined prefab 0x8c6be253 (mandrake)
[00:24:02]: Could not unload undefined prefab 0xa694a25e (mandrake_planted)
[00:24:02]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:24:02]: Could not unload undefined prefab 0x1bdc0692 (shadowduelist)
[00:24:02]: Could not unload undefined prefab 0xf1761cf (bernie_inactive)
[00:24:02]: Could not unload undefined prefab 0xb50c4e4c (pinecone_sapling)
[00:24:02]: Could not unload undefined prefab 0x112002ba (twiggy_nut_sapling)
[00:24:02]: Could not unload undefined prefab 0x320ed27b (plant_normal)
[00:24:02]: Could not unload undefined prefab 0xaa352fa8 (farmrocktall)
[00:24:02]: Could not unload undefined prefab 0x24356d14 (farmrockflat)
[00:24:02]: Could not unload undefined prefab 0x5a2850b7 (stickleft)
[00:24:02]: Could not unload undefined prefab 0x476da331 (burntstickright)
[00:24:02]: Could not unload undefined prefab 0x6fce684 (signleft)
[00:24:02]: Could not unload undefined prefab 0x6a319031 (fencepost)
[00:24:02]: Could not unload undefined prefab 0x6fef50cb (fencepostright)
[00:24:02]: Could not unload undefined prefab 0xb3facc (burntfencepost)
[00:24:02]: Could not unload undefined prefab 0x891047f0 (burntfencepostright)
[00:24:02]: Could not unload undefined prefab 0x359da624 (log)
[00:24:02]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:24:02]: Could not unload undefined prefab 0x706870b6 (green_cap)
[00:24:02]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:24:02]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:24:02]: Could not unload undefined prefab 0xed18eed (spore_small)
[00:24:02]: Could not unload undefined prefab 0x8539b55b (mushtree_small_burntfx)
[00:24:02]: Could not unload undefined prefab 0x994e32df (mushtree_small_bloom_burntfx)
[00:24:02]: Could not unload undefined prefab 0x65eb274a (petals_evil)
[00:24:02]: Could not unload undefined prefab 0x359da624 (log)
[00:24:02]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:24:02]: Could not unload undefined prefab 0x706870b6 (green_cap)
[00:24:02]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:24:02]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:24:02]: Could not unload undefined prefab 0x5286daa7 (spore_tall)
[00:24:02]: Could not unload undefined prefab 0x9db421e9 (mushtree_tall_burntfx)
[00:24:02]: Could not unload undefined prefab 0x4336ea6d (mushtree_tall_bloom_burntfx)
[00:24:02]: Could not unload undefined prefab 0xbc5dcbd5 (poopcloud)
[00:24:02]: Could not unload undefined prefab 0x774f8c02 (snowball)
[00:24:02]: Could not unload undefined prefab 0x4254b676 (splash_snow_fx)
[00:24:02]: Could not unload undefined prefab 0x47329be (firesuppressor_glow)
[00:24:02]: Could not unload undefined prefab 0x184178b (meat)
[00:24:02]: Could not unload undefined prefab 0x359da624 (log)
[00:24:02]: Could not unload undefined prefab 0x1078732c (character_fire)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x9be18af2 (twigs)
[00:24:02]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:24:02]: Could not unload undefined prefab 0x184178b (meat)
[00:24:02]: Could not unload undefined prefab 0x359da624 (log)
[00:24:02]: Could not unload undefined prefab 0x1078732c (character_fire)
[00:24:02]: Could not unload undefined prefab 0x30a708a2 (bee)
[00:24:02]: Could not unload undefined prefab 0x8d0790fc (honeycomb)
[00:24:02]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:24:02]: Could not unload undefined prefab 0x22a4f6ff (bird_egg)
[00:24:02]: Could not unload undefined prefab 0x36b4bd17 (crow)
[00:24:02]: Could not unload undefined prefab 0x9c61daea (robin)
[00:24:02]: Could not unload undefined prefab 0xb8dc9dfa (robin_winter)
[00:24:02]: Could not unload undefined prefab 0xc7e99c14 (guano)
[00:24:02]: Could not unload undefined prefab 0x6d8df54b (wall_hay)
[00:24:02]: Could not unload undefined prefab 0x42632ec3 (wall_hay_item_placer)
[00:24:02]: Could not unload undefined prefab 0x1af6b572 (shadowtentacle)
[00:24:02]: Could not unload undefined prefab 0x94c7685d (ice_projectile)
[00:24:02]: Could not unload undefined prefab 0xc04fd6d2 (fire_projectile)
[00:24:02]: Could not unload undefined prefab 0x2cabadf1 (staffcastfx)
[00:24:02]: Could not unload undefined prefab 0x36458456 (stafflight)
[00:24:02]: Could not unload undefined prefab 0x39ecf974 (cutgrass)
[00:24:02]: Could not unload undefined prefab 0xb2e44c01 (forcefieldfx)
[00:24:02]: Could not unload undefined prefab 0x8362ab32 (tentacle)
[00:24:02]: Could not unload undefined prefab 0xb430ba46 (splash_ocean)
[00:24:02]: Could not unload undefined prefab 0xaeb1c368 (book_fx)
[00:24:02]: Could not unload undefined prefab 0xc4f29869 (petals)
[00:24:02]: Could not unload undefined prefab 0x2ffe1998 (flower_evil)
[00:24:02]: Could not unload undefined prefab 0x491192bf (lightning_rod_fx)
[00:24:02]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:24:02]: Could not unload undefined prefab 0x94c7685d (ice_projectile)
[00:24:02]: Could not unload undefined prefab 0xc04fd6d2 (fire_projectile)
[00:24:02]: Could not unload undefined prefab 0x2cabadf1 (staffcastfx)
[00:24:02]: Could not unload undefined prefab 0x36458456 (stafflight)
[00:24:02]: Could not unload undefined prefab 0x39ecf974 (cutgrass)
[00:24:02]: Could not unload undefined prefab 0xe2f01fef (balloon)
[00:24:02]: Could not unload undefined prefab 0xde56c6a5 (mosquitosack)
[00:24:02]: Could not unload undefined prefab 0x35e3acb2 (berries_cooked)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:24:02]: Could not unload undefined prefab 0x9ce1eaee (rocks)
[00:24:02]: Could not unload undefined prefab 0x7e6d93ac (nitre)
[00:24:02]: Could not unload undefined prefab 0xe5306269 (flint)
[00:24:02]: Could not unload undefined prefab 0xd3c23856 (goldnugget)
[00:24:02]: Could not unload undefined prefab 0xc63a5a5c (moonrocknugget)
[00:24:02]: Could not unload undefined prefab 0xcff76eec (rock_break_fx)
[00:24:02]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:24:02]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:24:02]: Could not unload undefined prefab 0x359da624 (log)
[00:24:02]: Could not unload undefined prefab 0xb7e66933 (pinecone)
[00:24:02]: Could not unload undefined prefab 0xec8853ad (charcoal)
[00:24:02]: Could not unload undefined prefab 0xd30548b6 (leif)
[00:24:02]: Could not unload undefined prefab 0xcf3ff3e9 (leif_sparse)
[00:24:02]: Could not unload undefined prefab 0xb9d7a9d0 (pine_needles_chop)
[00:24:02]: Could not unload undefined prefab 0x78d69cdc (rock_petrified_tree_short)
[00:24:02]: Could not unload undefined prefab 0x4f122f8c (rock_petrified_tree_med)
[00:24:02]: Could not unload undefined prefab 0xe8c52d0d (rock_petrified_tree_tall)
[00:24:02]: Could not unload undefined prefab 0x50155047 (rock_petrified_tree_old)
[00:24:02]: Could not unload undefined prefab 0xaec874c8 (disease_puff)
[00:24:02]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:24:02]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:24:02]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:24:02]: Could not unload undefined prefab 0x674707c2 (acorn_sapling)
[00:24:02]: Could not unload undefined prefab 0x7e58aebd (acorn_cooked)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x757f3023 (pomegranate_cooked)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x830c1c66 (pomegranate_seeds)
[00:24:02]: Could not unload undefined prefab 0xecb2fd20 (eggplant_cooked)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0xd5a44029 (eggplant_seeds)
[00:24:02]: Could not unload undefined prefab 0x92132840 (poop)
[00:24:02]: Could not unload undefined prefab 0xbc74c3cb (bedroll_furry_quilt_white_ivory)
[00:24:02]: Could not unload undefined prefab 0x36b4bd17 (crow)
[00:24:02]: Could not unload undefined prefab 0x9c61daea (robin)
[00:24:02]: Could not unload undefined prefab 0xb8dc9dfa (robin_winter)
[00:24:02]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:24:02]: Could not unload undefined prefab 0x8efaa286 (impact)
[00:24:02]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:24:02]: Could not unload undefined prefab 0x359da624 (log)
[00:24:02]: Could not unload undefined prefab 0x9be18af2 (twigs)
[00:24:02]: Could not unload undefined prefab 0xb0a79a1 (twiggy_nut)
[00:24:02]: Could not unload undefined prefab 0xec8853ad (charcoal)
[00:24:02]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:24:02]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:24:02]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:24:02]: Could not unload undefined prefab 0xca3a1095 (diseaseflies)
[00:24:03]: Mod: workshop-365119238 (SmartCrockPot)    Registering prefabs    
[00:24:03]: Mod: workshop-365119238 (SmartCrockPot)      Registering default mod prefab    
[00:24:03]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Registering prefabs    
[00:24:03]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Registering prefab file: prefabs/mapiconhelper    
[00:24:03]: Mod: workshop-672584952 ([Updated] Complete Your Map)        mapiconhelper    
[00:24:03]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Registering default mod prefab    
[00:24:03]: Mod: workshop-362906105 (Sticky Recipe)    Registering prefabs    
[00:24:03]: Mod: workshop-362906105 (Sticky Recipe)      Registering default mod prefab    
[00:24:03]: Mod: workshop-344071294 (Quick Emotes)    Registering prefabs    
[00:24:03]: Mod: workshop-344071294 (Quick Emotes)      Registering default mod prefab    
[00:24:03]: Mod: workshop-539957958 (Persistent Compass HUD)    Registering prefabs    
[00:24:03]: Mod: workshop-539957958 (Persistent Compass HUD)      Registering default mod prefab    
[00:24:03]: Mod: workshop-367593872 (No More Lag)    Registering prefabs    
[00:24:03]: Mod: workshop-367593872 (No More Lag)      Registering default mod prefab    
[00:24:03]: Mod: workshop-345692228 (Minimap HUD)    Registering prefabs    
[00:24:03]: Mod: workshop-345692228 (Minimap HUD)      Registering default mod prefab    
[00:24:03]: Mod: workshop-661284815 (Improved Force Attack)    Registering prefabs    
[00:24:03]: Mod: workshop-661284815 (Improved Force Attack)      Registering default mod prefab    
[00:24:03]: Mod: workshop-376333686 (Combined Status)    Registering prefabs    
[00:24:03]: Mod: workshop-376333686 (Combined Status)      Registering default mod prefab    
[00:24:03]: Mod: workshop-394612159 (Auto ReTrap)    Registering prefabs    
[00:24:03]: Mod: workshop-394612159 (Auto ReTrap)      Registering default mod prefab    
[00:24:03]: Mod: workshop-609051112 (Action Queue(DST))    Registering prefabs    
[00:24:03]: Mod: workshop-609051112 (Action Queue(DST))      Registering default mod prefab    
[00:24:03]: Mod: workshop-694531911 ( [DST]Aerial view)    Registering prefabs    
[00:24:03]: Mod: workshop-694531911 ( [DST]Aerial view)      Registering default mod prefab    
[00:24:03]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Registering prefabs    
[00:24:03]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Registering prefab file: prefabs/range    
[00:24:03]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])        range_indicator_client    
[00:24:03]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Registering default mod prefab    
[00:24:03]: Mod: workshop-351325790 (Geometric Placement)    Registering prefabs    
[00:24:03]: Mod: workshop-351325790 (Geometric Placement)      Registering prefab file: prefabs/buildgridplacer    
[00:24:03]: Mod: workshop-351325790 (Geometric Placement)        buildgridplacer    
[00:24:03]: Mod: workshop-351325790 (Geometric Placement)      Registering default mod prefab    
[00:24:03]:     LOAD BE    
[00:24:04]:     LOAD BE: done    
[00:24:04]: Loading world: client_temp/server_save    
[00:24:04]: Save file is at version 3    
[00:24:04]: MiniMapComponent::AddAtlas( minimap/minimap_data.xml )
[00:24:04]: MiniMapComponent::AddAtlas( ../mods/workshop-672584952/minimap/moreminimapicons.xml )
[00:24:05]: Loading Nav Grid    
[00:24:05]: Reconstructing topology    
[00:24:05]:     ...Sorting points    
[00:24:05]:     ...Sorting edges    
[00:24:05]:     ...Connecting nodes    
[00:24:05]:     ...Validating connections    
[00:24:05]:     ...Housekeeping    
[00:24:05]:     ...Done!    
[00:24:05]: ModIndex: Load sequence finished successfully.    
[00:24:05]: Reset() returning
[00:24:05]: Attempting to send resume request
[00:24:05]: ReceiveResumeNotification
[00:24:05]: Loading minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[00:24:05]: Deserializing cached icon data: 1275
[00:24:05]: Deserializing tile data (425 x 425)
[00:27:00]: Serializing minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[00:27:00]: Serializing user: session/90E621F09490DBD1/KU_bPVGW5kg_/0000000001
[00:32:59]: Vote started: "kick" (KU_wvCz6GPn) Suck My Unit    
[00:33:29]: Vote ended    
[00:34:48]: [200] Account Communication Success (6)
[00:34:48]: Received (KU_bPVGW5kg) from TokenPurpose
[00:35:00]: Serializing minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[00:35:00]: Serializing user: session/90E621F09490DBD1/KU_bPVGW5kg_/0000000001
[00:37:26]: Serializing minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[00:37:26]: Serializing user: session/90E621F09490DBD1/KU_bPVGW5kg_/0000000001
[00:37:26]: Serializing minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[00:37:26]: [Shard] Starting connection to destination server...
[00:37:26]: [Shard] Getting info of destination server...
[00:37:26]: Received ID_DST_SHARD_SILENT_DISCONNECT
[00:37:26]: Attempting to send resume request
[00:37:26]: [Shard] OnDestinationInfoResponse Connecting to master=(N)
[00:37:26]: [Shard] OnDestinationInfoResponse migration info: 86.89.118.65|11001 
[00:37:26]: [Connect] SetMigrationInfo 86.89.118.65|11001 [90103047099058179]
[00:37:26]: unloading prefabs for mod MOD_workshop-365119238    
[00:37:26]: unloading prefabs for mod MOD_workshop-672584952    
[00:37:26]: unloading prefabs for mod MOD_workshop-362906105    
[00:37:26]: unloading prefabs for mod MOD_workshop-344071294    
[00:37:26]: unloading prefabs for mod MOD_workshop-539957958    
[00:37:26]: unloading prefabs for mod MOD_workshop-367593872    
[00:37:26]: unloading prefabs for mod MOD_workshop-345692228    
[00:37:26]: unloading prefabs for mod MOD_workshop-661284815    
[00:37:26]: unloading prefabs for mod MOD_workshop-376333686    
[00:37:26]: unloading prefabs for mod MOD_workshop-394612159    
[00:37:26]: unloading prefabs for mod MOD_workshop-609051112    
[00:37:26]: unloading prefabs for mod MOD_workshop-694531911    
[00:37:26]: unloading prefabs for mod MOD_workshop-522023088    
[00:37:26]: unloading prefabs for mod MOD_workshop-351325790    
[00:37:26]: Collecting garbage...
[00:37:27]: lua_gc took 0.02 seconds
[00:37:27]: ~ShardLuaProxy()
[00:37:27]: ~ItemServerLuaProxy()
[00:37:27]: ~InventoryLuaProxy()
[00:37:27]: ~NetworkLuaProxy()
[00:37:27]: ~SimLuaProxy()
[00:37:27]: SteamWorkshop::CancelDownloads clearing all unfinished downloads
[00:37:27]: lua_close took 0.02 seconds
[00:37:27]: ReleaseAll
[00:37:27]: ReleaseAll Finished
[00:37:27]: cGame::StartPlaying
[00:37:27]: LOADING LUA
[00:37:27]: DoLuaFile scripts/main.lua
[00:37:27]: DoLuaFile loading buffer scripts/main.lua
[00:37:27]: running main.lua
    
[00:37:27]: loaded modindex    
[00:37:27]: ModIndex: Beginning normal load sequence.
    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-344071294    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-345692228    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-351325790    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-362906105    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-365119238    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-367593872    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-394612159    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-522023088    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-539957958    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-609051112    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-661284815    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-672584952    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-694531911    
[00:37:27]: Could not load mod_config_data/modconfiguration_workshop-344071294    
[00:37:27]: Loading mod: workshop-344071294 (Quick Emotes) Version:1.7    
[00:37:27]: loaded mod_config_data/modconfiguration_workshop-345692228    
[00:37:27]: Loading mod: workshop-345692228 (Minimap HUD) Version:1.0.7    
[00:37:27]: loaded mod_config_data/modconfiguration_workshop-351325790    
[00:37:27]: Loading mod: workshop-351325790 (Geometric Placement) Version:2.1.1    
[00:37:27]: Could not load mod_config_data/modconfiguration_workshop-362906105    
[00:37:27]: Loading mod: workshop-362906105 (Sticky Recipe) Version:1.1.2    
[00:37:27]: Could not load mod_config_data/modconfiguration_workshop-365119238    
[00:37:27]: Loading mod: workshop-365119238 (SmartCrockPot) Version:4.02    
[00:37:27]: Could not load mod_config_data/modconfiguration_workshop-367593872    
[00:37:27]: Loading mod: workshop-367593872 (No More Lag) Version:1.1.2    
[00:37:27]: Could not load mod_config_data/modconfiguration_workshop-376333686    
[00:37:27]: Loading mod: workshop-376333686 (Combined Status) Version:1.6.6    
[00:37:27]: Could not load mod_config_data/modconfiguration_workshop-394612159    
[00:37:27]: Loading mod: workshop-394612159 (Auto ReTrap) Version:1.02    
[00:37:27]: Could not load mod_config_data/modconfiguration_workshop-522023088    
[00:37:27]: Loading mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT]) Version:1.2.4    
[00:37:27]: Could not load mod_config_data/modconfiguration_workshop-539957958    
[00:37:27]: Loading mod: workshop-539957958 (Persistent Compass HUD) Version:0.1    
[00:37:27]: Could not load mod_config_data/modconfiguration_workshop-609051112    
[00:37:27]: Loading mod: workshop-609051112 (Action Queue(DST)) Version:1.2.6    
[00:37:27]: Could not load mod_config_data/modconfiguration_workshop-661284815    
[00:37:27]: Loading mod: workshop-661284815 (Improved Force Attack) Version:0.5    
[00:37:27]: loaded mod_config_data/modconfiguration_workshop-672584952    
[00:37:27]: Loading mod: workshop-672584952 ([Updated] Complete Your Map) Version:4.32c    
[00:37:27]: loaded mod_config_data/modconfiguration_workshop-694531911    
[00:37:27]: Loading mod: workshop-694531911 ( [DST]Aerial view) Version:1.1.2    
[00:37:27]: Mod: workshop-365119238 (SmartCrockPot)    Loading modworldgenmain.lua    
[00:37:27]: Mod: workshop-365119238 (SmartCrockPot)      Mod had no modworldgenmain.lua. Skipping.    
[00:37:27]: Mod: workshop-365119238 (SmartCrockPot)    Loading modmain.lua    
[00:37:27]: modimport: ../mods/workshop-365119238/modmain_segments/containerwidgetfunction.lua    
[00:37:27]: modimport: ../mods/workshop-365119238/modmain_segments/containers_setup.lua    
[00:37:27]: modimport: ../mods/workshop-365119238/modmain_segments/action_predict.lua    
[00:37:27]: WARNING: Positional Action parameters are deprecated. Please pass action a table instead.    
[00:37:27]: Action defined at     ../mods/workshop-365119238/modmain_segments/action_predict.lua:1 in (local) result (main) <0-0>    
[00:37:27]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Loading modworldgenmain.lua    
[00:37:27]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Mod had no modworldgenmain.lua. Skipping.    
[00:37:27]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Loading modmain.lua    
[00:37:27]: Mod: workshop-362906105 (Sticky Recipe)    Loading modworldgenmain.lua    
[00:37:27]: Mod: workshop-362906105 (Sticky Recipe)      Mod had no modworldgenmain.lua. Skipping.    
[00:37:27]: Mod: workshop-362906105 (Sticky Recipe)    Loading modmain.lua    
[00:37:27]: Mod: workshop-344071294 (Quick Emotes)    Loading modworldgenmain.lua    
[00:37:27]: Mod: workshop-344071294 (Quick Emotes)      Mod had no modworldgenmain.lua. Skipping.    
[00:37:27]: Mod: workshop-344071294 (Quick Emotes)    Loading modmain.lua    
[00:37:27]: Mod: workshop-539957958 (Persistent Compass HUD)    Loading modworldgenmain.lua    
[00:37:27]: Mod: workshop-539957958 (Persistent Compass HUD)      Mod had no modworldgenmain.lua. Skipping.    
[00:37:27]: Mod: workshop-539957958 (Persistent Compass HUD)    Loading modmain.lua    
[00:37:27]: Mod: workshop-367593872 (No More Lag)    Loading modworldgenmain.lua    
[00:37:27]: Mod: workshop-367593872 (No More Lag)      Mod had no modworldgenmain.lua. Skipping.    
[00:37:27]: Mod: workshop-367593872 (No More Lag)    Loading modmain.lua    
[00:37:27]: Mod: workshop-345692228 (Minimap HUD)    Loading modworldgenmain.lua    
[00:37:27]: Mod: workshop-345692228 (Minimap HUD)      Mod had no modworldgenmain.lua. Skipping.    
[00:37:27]: Mod: workshop-345692228 (Minimap HUD)    Loading modmain.lua    
[00:37:27]: Mod: workshop-661284815 (Improved Force Attack)    Loading modworldgenmain.lua    
[00:37:27]: Mod: workshop-661284815 (Improved Force Attack)      Mod had no modworldgenmain.lua. Skipping.    
[00:37:27]: Mod: workshop-661284815 (Improved Force Attack)    Loading modmain.lua    
[00:37:27]: Mod: workshop-376333686 (Combined Status)    Loading modworldgenmain.lua    
[00:37:27]: Mod: workshop-376333686 (Combined Status)      Mod had no modworldgenmain.lua. Skipping.    
[00:37:27]: Mod: workshop-376333686 (Combined Status)    Loading modmain.lua    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-344071294    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-345692228    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-351325790    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-362906105    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-365119238    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-367593872    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-394612159    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-522023088    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-539957958    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-609051112    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-661284815    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-672584952    
[00:37:27]: ModIndex:GetModsToLoad inserting moddir,     workshop-694531911    
[00:37:27]: Mod: workshop-394612159 (Auto ReTrap)    Loading modworldgenmain.lua    
[00:37:27]: Mod: workshop-394612159 (Auto ReTrap)      Mod had no modworldgenmain.lua. Skipping.    
[00:37:27]: Mod: workshop-394612159 (Auto ReTrap)    Loading modmain.lua    
[00:37:27]: Mod: workshop-609051112 (Action Queue(DST))    Loading modworldgenmain.lua    
[00:37:27]: Mod: workshop-609051112 (Action Queue(DST))      Mod had no modworldgenmain.lua. Skipping.    
[00:37:27]: Mod: workshop-609051112 (Action Queue(DST))    Loading modmain.lua    
[00:37:27]: Mod: workshop-694531911 ( [DST]Aerial view)    Loading modworldgenmain.lua    
[00:37:27]: Mod: workshop-694531911 ( [DST]Aerial view)      Mod had no modworldgenmain.lua. Skipping.    
[00:37:27]: Mod: workshop-694531911 ( [DST]Aerial view)    Loading modmain.lua    
[00:37:27]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Loading modworldgenmain.lua    
[00:37:27]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Mod had no modworldgenmain.lua. Skipping.    
[00:37:27]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Loading modmain.lua    
[00:37:27]: Client Version Running    
[00:37:27]: Mod: workshop-351325790 (Geometric Placement)    Loading modworldgenmain.lua    
[00:37:27]: Mod: workshop-351325790 (Geometric Placement)      Mod had no modworldgenmain.lua. Skipping.    
[00:37:27]: Mod: workshop-351325790 (Geometric Placement)    Loading modmain.lua    
[00:37:27]: LOADING LUA SUCCESS
[00:37:27]: PlayerDeaths loaded morgue    2056    
[00:37:27]: PlayerHistory loaded player_history    11526    
[00:37:27]: bloom_enabled    false    
[00:37:27]: loaded saveindex    
[00:37:27]: OnFilesLoaded()    
[00:37:27]: OnUpdatePurchaseStateComplete    
[00:37:27]: [Connect] Init client connection to 86.89.118.65|11001
[00:37:27]: [Connect] PendingConnection::Reset(true)
[00:37:27]: [Steam] Game Connection terminated (1098275158|11000)
[00:37:27]: [Shard] Stopping shard mode
[00:37:27]: SteamWorkshop::CancelDownloads clearing all unfinished downloads
[00:37:27]: [Connect] InternalInitClient <8501786512946536975>
[00:37:27]: [Shard] Starting shard mode as player
[00:37:27]: [Connect] No server listing found for <UNASSIGNED_RAKNET_GUID>
[00:37:27]: [Connect] Sending ping(s)...
[00:37:27]: [Connect] Ping 86.89.118.65|11001
[00:37:27]: ModIndex: Load sequence finished successfully.    
[00:37:27]: Reset() returning
[00:37:27]: [Connect] Ping response from 86.89.118.65|11001
[00:37:27]: [Connect] Joining server from ping response...
[00:37:27]: [Connect] Got join server response from lua
[00:37:28]: [200] Account Communication Success (13)
[00:37:28]: [Connect] PendingConnectionDoConnect to 86.89.118.65|11001
[00:37:28]: [Connect] DirectConnect to 86.89.118.65|11001
[00:37:28]: Connection accepted to 86.89.118.65|11001 <16915548013395832812>
[00:37:28]: Network external address discovered: 86.25.97.9|50905
[00:37:28]: SendClientHandShakePacket "re^eyJVc2VySUQiOiJLVV9iUFZHVzVrZyIsIkdhbWUiOiJEb250U3RhcnZlVG9nZXRoZXIiLCJQdXJwb3NlIjoiR2FtZVNlc3Npb24ifQ==^4X/18sCUJs3skA0/1/nj1SU+7kts1TXp" to <16915548013395832812>
[00:37:29]: DeserializeHandShakeServerListing
[00:37:29]: Network tick rate: U=10(3), D=15
[00:37:29]: Version: 186853
[00:37:29]: [Steam] Game Connection initiated
[00:37:30]: Begin Session: 205FAE30949107FC
[00:37:30]: Done Downloading Client Object Data
[00:37:30]: DownloadMods and temp disable    
[00:37:30]: Downloading [4] From: server_temp
[00:37:31]: 4 (38%) 1/1 server_temp/server_save 114000b / 295927b
[00:37:32]: 4 (76%) 1/1 server_temp/server_save 228000b / 295927b
[00:37:32]: 4 (100%) 1/1 server_temp/server_save 295927b / 295927b
[00:37:32]: Download complete[4] Files: 1 Size: 295927
[00:37:33]: Collecting garbage...
[00:37:33]: lua_gc took 0.02 seconds
[00:37:33]: ~ShardLuaProxy()
[00:37:33]: ~ItemServerLuaProxy()
[00:37:33]: ~InventoryLuaProxy()
[00:37:33]: ~NetworkLuaProxy()
[00:37:33]: ~SimLuaProxy()
[00:37:33]: SteamWorkshop::CancelDownloads clearing all unfinished downloads
[00:37:33]: lua_close took 0.02 seconds
[00:37:33]: ReleaseAll
[00:37:33]: ReleaseAll Finished
[00:37:33]: cGame::StartPlaying
[00:37:33]: LOADING LUA
[00:37:33]: DoLuaFile scripts/main.lua
[00:37:33]: DoLuaFile loading buffer scripts/main.lua
[00:37:33]: running main.lua
    
[00:37:33]: loaded modindex    
[00:37:33]: ModIndex: Beginning normal load sequence.
    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-344071294    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-345692228    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-351325790    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-362906105    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-365119238    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-367593872    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-394612159    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-522023088    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-539957958    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-609051112    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-661284815    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-672584952    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-694531911    
[00:37:33]: Could not load mod_config_data/modconfiguration_workshop-344071294    
[00:37:33]: Loading mod: workshop-344071294 (Quick Emotes) Version:1.7    
[00:37:33]: loaded mod_config_data/modconfiguration_workshop-345692228    
[00:37:33]: Loading mod: workshop-345692228 (Minimap HUD) Version:1.0.7    
[00:37:33]: loaded mod_config_data/modconfiguration_workshop-351325790    
[00:37:33]: Loading mod: workshop-351325790 (Geometric Placement) Version:2.1.1    
[00:37:33]: Could not load mod_config_data/modconfiguration_workshop-362906105    
[00:37:33]: Loading mod: workshop-362906105 (Sticky Recipe) Version:1.1.2    
[00:37:33]: Could not load mod_config_data/modconfiguration_workshop-365119238    
[00:37:33]: Loading mod: workshop-365119238 (SmartCrockPot) Version:4.02    
[00:37:33]: Could not load mod_config_data/modconfiguration_workshop-367593872    
[00:37:33]: Loading mod: workshop-367593872 (No More Lag) Version:1.1.2    
[00:37:33]: Could not load mod_config_data/modconfiguration_workshop-376333686    
[00:37:33]: Loading mod: workshop-376333686 (Combined Status) Version:1.6.6    
[00:37:33]: Could not load mod_config_data/modconfiguration_workshop-394612159    
[00:37:33]: Loading mod: workshop-394612159 (Auto ReTrap) Version:1.02    
[00:37:33]: Could not load mod_config_data/modconfiguration_workshop-522023088    
[00:37:33]: Loading mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT]) Version:1.2.4    
[00:37:33]: Could not load mod_config_data/modconfiguration_workshop-539957958    
[00:37:33]: Loading mod: workshop-539957958 (Persistent Compass HUD) Version:0.1    
[00:37:33]: Could not load mod_config_data/modconfiguration_workshop-609051112    
[00:37:33]: Loading mod: workshop-609051112 (Action Queue(DST)) Version:1.2.6    
[00:37:33]: Could not load mod_config_data/modconfiguration_workshop-661284815    
[00:37:33]: Loading mod: workshop-661284815 (Improved Force Attack) Version:0.5    
[00:37:33]: loaded mod_config_data/modconfiguration_workshop-672584952    
[00:37:33]: Loading mod: workshop-672584952 ([Updated] Complete Your Map) Version:4.32c    
[00:37:33]: loaded mod_config_data/modconfiguration_workshop-694531911    
[00:37:33]: Loading mod: workshop-694531911 ( [DST]Aerial view) Version:1.1.2    
[00:37:33]: Mod: workshop-365119238 (SmartCrockPot)    Loading modworldgenmain.lua    
[00:37:33]: Mod: workshop-365119238 (SmartCrockPot)      Mod had no modworldgenmain.lua. Skipping.    
[00:37:33]: Mod: workshop-365119238 (SmartCrockPot)    Loading modmain.lua    
[00:37:33]: modimport: ../mods/workshop-365119238/modmain_segments/containerwidgetfunction.lua    
[00:37:33]: modimport: ../mods/workshop-365119238/modmain_segments/containers_setup.lua    
[00:37:33]: modimport: ../mods/workshop-365119238/modmain_segments/action_predict.lua    
[00:37:33]: WARNING: Positional Action parameters are deprecated. Please pass action a table instead.    
[00:37:33]: Action defined at     ../mods/workshop-365119238/modmain_segments/action_predict.lua:1 in (local) result (main) <0-0>    
[00:37:33]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Loading modworldgenmain.lua    
[00:37:33]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Mod had no modworldgenmain.lua. Skipping.    
[00:37:33]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Loading modmain.lua    
[00:37:33]: Mod: workshop-362906105 (Sticky Recipe)    Loading modworldgenmain.lua    
[00:37:33]: Mod: workshop-362906105 (Sticky Recipe)      Mod had no modworldgenmain.lua. Skipping.    
[00:37:33]: Mod: workshop-362906105 (Sticky Recipe)    Loading modmain.lua    
[00:37:33]: Mod: workshop-344071294 (Quick Emotes)    Loading modworldgenmain.lua    
[00:37:33]: Mod: workshop-344071294 (Quick Emotes)      Mod had no modworldgenmain.lua. Skipping.    
[00:37:33]: Mod: workshop-344071294 (Quick Emotes)    Loading modmain.lua    
[00:37:33]: Mod: workshop-539957958 (Persistent Compass HUD)    Loading modworldgenmain.lua    
[00:37:33]: Mod: workshop-539957958 (Persistent Compass HUD)      Mod had no modworldgenmain.lua. Skipping.    
[00:37:33]: Mod: workshop-539957958 (Persistent Compass HUD)    Loading modmain.lua    
[00:37:33]: Mod: workshop-367593872 (No More Lag)    Loading modworldgenmain.lua    
[00:37:33]: Mod: workshop-367593872 (No More Lag)      Mod had no modworldgenmain.lua. Skipping.    
[00:37:33]: Mod: workshop-367593872 (No More Lag)    Loading modmain.lua    
[00:37:33]: Mod: workshop-345692228 (Minimap HUD)    Loading modworldgenmain.lua    
[00:37:33]: Mod: workshop-345692228 (Minimap HUD)      Mod had no modworldgenmain.lua. Skipping.    
[00:37:33]: Mod: workshop-345692228 (Minimap HUD)    Loading modmain.lua    
[00:37:33]: Mod: workshop-661284815 (Improved Force Attack)    Loading modworldgenmain.lua    
[00:37:33]: Mod: workshop-661284815 (Improved Force Attack)      Mod had no modworldgenmain.lua. Skipping.    
[00:37:33]: Mod: workshop-661284815 (Improved Force Attack)    Loading modmain.lua    
[00:37:33]: Mod: workshop-376333686 (Combined Status)    Loading modworldgenmain.lua    
[00:37:33]: Mod: workshop-376333686 (Combined Status)      Mod had no modworldgenmain.lua. Skipping.    
[00:37:33]: Mod: workshop-376333686 (Combined Status)    Loading modmain.lua    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-344071294    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-345692228    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-351325790    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-362906105    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-365119238    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-367593872    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-394612159    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-522023088    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-539957958    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-609051112    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-661284815    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-672584952    
[00:37:33]: ModIndex:GetModsToLoad inserting moddir,     workshop-694531911    
[00:37:33]: Mod: workshop-394612159 (Auto ReTrap)    Loading modworldgenmain.lua    
[00:37:33]: Mod: workshop-394612159 (Auto ReTrap)      Mod had no modworldgenmain.lua. Skipping.    
[00:37:33]: Mod: workshop-394612159 (Auto ReTrap)    Loading modmain.lua    
[00:37:33]: Mod: workshop-609051112 (Action Queue(DST))    Loading modworldgenmain.lua    
[00:37:33]: Mod: workshop-609051112 (Action Queue(DST))      Mod had no modworldgenmain.lua. Skipping.    
[00:37:33]: Mod: workshop-609051112 (Action Queue(DST))    Loading modmain.lua    
[00:37:33]: Mod: workshop-694531911 ( [DST]Aerial view)    Loading modworldgenmain.lua    
[00:37:33]: Mod: workshop-694531911 ( [DST]Aerial view)      Mod had no modworldgenmain.lua. Skipping.    
[00:37:33]: Mod: workshop-694531911 ( [DST]Aerial view)    Loading modmain.lua    
[00:37:33]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Loading modworldgenmain.lua    
[00:37:33]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Mod had no modworldgenmain.lua. Skipping.    
[00:37:33]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Loading modmain.lua    
[00:37:33]: Client Version Running    
[00:37:33]: Mod: workshop-351325790 (Geometric Placement)    Loading modworldgenmain.lua    
[00:37:33]: Mod: workshop-351325790 (Geometric Placement)      Mod had no modworldgenmain.lua. Skipping.    
[00:37:33]: Mod: workshop-351325790 (Geometric Placement)    Loading modmain.lua    
[00:37:33]: LOADING LUA SUCCESS
[00:37:33]: PlayerDeaths loaded morgue    2056    
[00:37:33]: PlayerHistory loaded player_history    11526    
[00:37:33]: bloom_enabled    false    
[00:37:33]: loaded saveindex    
[00:37:33]: OnFilesLoaded()    
[00:37:33]: OnUpdatePurchaseStateComplete    
[00:37:33]:     Unload FE    
[00:37:33]:     Unload FE done    
[00:37:33]: Could not unload undefined prefab 0x184178b (meat)
[00:37:33]: Could not unload undefined prefab 0x1951bb3 (merm)
[00:37:33]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:37:33]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:37:33]: Could not unload undefined prefab 0x184178b (meat)
[00:37:33]: Could not unload undefined prefab 0x116a891d (backpack_mushy)
[00:37:33]: Could not unload undefined prefab 0x12d1229f (backpack_poop)
[00:37:33]: Could not unload undefined prefab 0x138df44d (hutch_move_fx)
[00:37:33]: Could not unload undefined prefab 0x1a35332f (spore_medium)
[00:37:33]: Could not unload undefined prefab 0x94e85ed (campfirefire)
[00:37:33]: Could not unload undefined prefab 0x1baa7bae (firehound)
[00:37:33]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:37:33]: Could not unload undefined prefab 0x184178b (meat)
[00:37:33]: Could not unload undefined prefab 0x6d4e973 (spat_splash_fx_full)
[00:37:33]: Could not unload undefined prefab 0x162c669d (marble)
[00:37:33]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:37:33]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:37:33]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:37:33]: Could not unload undefined prefab 0x6647de8 (wall_stone_item_placer)
[00:37:33]: Could not unload undefined prefab 0x24356d14 (farmrockflat)
[00:37:33]: Could not unload undefined prefab 0x6fce684 (signleft)
[00:37:33]: Could not unload undefined prefab 0xb3facc (burntfencepost)
[00:37:33]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:37:33]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:37:33]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:37:33]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x222dd5a3 (torch_shadow)
[00:37:33]: Could not unload undefined prefab 0x162c669d (marble)
[00:37:33]: Could not unload undefined prefab 0x1549fe9 (explode_small)
[00:37:33]: Could not unload undefined prefab 0x1549fe9 (explode_small)
[00:37:33]: Could not unload undefined prefab 0x1549fe9 (explode_small)
[00:37:33]: Could not unload undefined prefab 0x1549fe9 (explode_small)
[00:37:33]: Could not unload undefined prefab 0x2132defc (warningshadow)
[00:37:33]: Could not unload undefined prefab 0xead0d51 (cavelight_small)
[00:37:33]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:37:33]: Could not unload undefined prefab 0x9d92cce (purpleamulet)
[00:37:33]: Could not unload undefined prefab 0x2ca456a0 (orangeamulet)
[00:37:33]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:37:33]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:37:33]: Could not unload undefined prefab 0x1765df93 (monkey)
[00:37:33]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:37:33]: Could not unload undefined prefab 0x9d92cce (purpleamulet)
[00:37:33]: Could not unload undefined prefab 0x2ca456a0 (orangeamulet)
[00:37:33]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:37:33]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:37:33]: Could not unload undefined prefab 0x1765df93 (monkey)
[00:37:33]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:37:33]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:37:33]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:37:33]: Could not unload undefined prefab 0x1ad851d9 (mushtree_medium)
[00:37:33]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:37:33]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:37:33]: Could not unload undefined prefab 0xed18eed (spore_small)
[00:37:33]: Could not unload undefined prefab 0x16f0b2bb (mushtree_tall_webbed)
[00:37:33]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:37:33]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:37:33]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:37:33]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:37:33]: Could not unload undefined prefab 0x2aee1328 (tentacle_pillar_hole)
[00:37:33]: Could not unload undefined prefab 0xf57ee3 (rockyherd)
[00:37:33]: Could not unload undefined prefab 0x1765df93 (monkey)
[00:37:33]: Could not unload undefined prefab 0x1765df93 (monkey)
[00:37:33]: Could not unload undefined prefab 0x1078732c (character_fire)
[00:37:33]: Could not unload undefined prefab 0x1549fe9 (explode_small)
[00:37:33]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:37:33]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:37:33]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:37:33]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:37:33]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:37:33]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:37:33]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:37:33]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:37:33]: Could not unload undefined prefab 0x291cde91 (ruins_vase)
[00:37:33]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:37:33]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:37:33]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:37:33]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:37:33]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:37:33]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:37:33]: Could not unload undefined prefab 0x38050c (ruins_rubble_vase)
[00:37:33]: Could not unload undefined prefab 0x2cf27a76 (bishop_charge)
[00:37:33]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:37:33]: Could not unload undefined prefab 0x162c669d (marble)
[00:37:33]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:37:33]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:37:33]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:37:33]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:37:33]: Could not unload undefined prefab 0x162c669d (marble)
[00:37:33]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:37:33]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:37:33]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:37:33]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:37:33]: Could not unload undefined prefab 0x162c669d (marble)
[00:37:33]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:37:33]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:37:33]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:37:33]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:37:33]: Could not unload undefined prefab 0x162c669d (marble)
[00:37:33]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:37:33]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:37:33]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:37:33]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:37:33]: Could not unload undefined prefab 0x20cd7317 (nightmarelight)
[00:37:33]: Could not unload undefined prefab 0x111c8fe5 (fissure)
[00:37:33]: Could not unload undefined prefab 0x184178b (meat)
[00:37:33]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:37:33]: Could not unload undefined prefab 0x2824710f (spider_web_spit_creep)
[00:37:33]: Could not unload undefined prefab 0x23085961 (caverain)
[00:37:33]: Could not unload undefined prefab 0x21823186 (dropperweb)
[00:37:33]: Could not unload undefined prefab 0x15261eec (hutch)
[00:37:33]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:37:33]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:37:33]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:37:33]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:37:33]: Could not unload undefined prefab 0xb1e7b61 (dragonfruit)
[00:37:33]: Could not unload undefined prefab 0x2b3fb01c (watermelon)
[00:37:33]: Could not unload undefined prefab 0x13897ec9 (berries_juicy)
[00:37:33]: Could not unload undefined prefab 0x1047b105 (evergreen)
[00:37:33]: Could not unload undefined prefab 0x9caab61 (evergreen_normal)
[00:37:33]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:37:33]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:37:33]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:37:33]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:37:33]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:37:33]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:37:33]: Could not unload undefined prefab 0xa5cdb4c (evergreen_sparse_normal)
[00:37:33]: Could not unload undefined prefab 0x6d765b7 (evergreen_sparse_short)
[00:37:33]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:37:33]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:37:33]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:37:33]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:37:33]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:37:33]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:37:33]: Could not unload undefined prefab 0x204c651d (evergreen_stump)
[00:37:33]: Could not unload undefined prefab 0xb0a79a1 (twiggy_nut)
[00:37:33]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:37:33]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:37:33]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:37:33]: Could not unload undefined prefab 0xb0a79a1 (twiggy_nut)
[00:37:33]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:37:33]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:37:33]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:37:33]: Could not unload undefined prefab 0xb0a79a1 (twiggy_nut)
[00:37:33]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:37:33]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:37:33]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:37:33]: Could not unload undefined prefab 0x28861538 (sapling)
[00:37:33]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:37:33]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:37:33]: Could not unload undefined prefab 0x217a7c34 (berrybush2)
[00:37:33]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:37:33]: Could not unload undefined prefab 0x87f86db (rock_moon)
[00:37:33]: Could not unload undefined prefab 0x107c65e6 (tallbird)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x1baa7bae (firehound)
[00:37:33]: Could not unload undefined prefab 0x2747c45b (krampus)
[00:37:33]: Could not unload undefined prefab 0x19c004b2 (pighouse)
[00:37:33]: Could not unload undefined prefab 0x2571d493 (butterfly)
[00:37:33]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:37:33]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:37:33]: Could not unload undefined prefab 0x24b8f3b (fireflies)
[00:37:33]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:37:33]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:37:33]: Could not unload undefined prefab 0x2f85395e (turf_savanna)
[00:37:33]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:37:33]: Could not unload undefined prefab 0x31b9f5e7 (turf_forest)
[00:37:33]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:37:33]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:37:33]: Could not unload undefined prefab 0x10270c70 (turf_fungus)
[00:37:33]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:37:33]: Could not unload undefined prefab 0x59d5dd3 (turf_underrock)
[00:37:33]: Could not unload undefined prefab 0x2fbde1f2 (turf_mud)
[00:37:33]: Could not unload undefined prefab 0x1bd1b038 (insanityrock)
[00:37:33]: Could not unload undefined prefab 0x1c6b2805 (houndmound)
[00:37:33]: Could not unload undefined prefab 0x184178b (meat)
[00:37:33]: Could not unload undefined prefab 0xe2bfa46 (tophat)
[00:37:33]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:37:33]: Could not unload undefined prefab 0x2368cc34 (green_mushroom)
[00:37:33]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:37:33]: Could not unload undefined prefab 0x67ff1ed (mermhouse)
[00:37:33]: Could not unload undefined prefab 0x2ffe1998 (flower_evil)
[00:37:33]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:37:33]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:37:33]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:37:33]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:37:33]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:37:33]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:37:33]: Could not unload undefined prefab 0x2cf27a76 (bishop_charge)
[00:37:33]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:37:33]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:37:33]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:37:33]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:37:33]: Could not unload undefined prefab 0x29d8efdb (red_leaves_chop)
[00:37:33]: Could not unload undefined prefab 0x2d1c40c (deciduous_root)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x235a9a90 (birchnutdrake)
[00:37:33]: Could not unload undefined prefab 0x29d8efdb (red_leaves_chop)
[00:37:33]: Could not unload undefined prefab 0x2d1c40c (deciduous_root)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x235a9a90 (birchnutdrake)
[00:37:33]: Could not unload undefined prefab 0x29d8efdb (red_leaves_chop)
[00:37:33]: Could not unload undefined prefab 0x2d1c40c (deciduous_root)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x235a9a90 (birchnutdrake)
[00:37:33]: Could not unload undefined prefab 0x29d8efdb (red_leaves_chop)
[00:37:33]: Could not unload undefined prefab 0x2d1c40c (deciduous_root)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x235a9a90 (birchnutdrake)
[00:37:33]: Could not unload undefined prefab 0x29d8efdb (red_leaves_chop)
[00:37:33]: Could not unload undefined prefab 0x2d1c40c (deciduous_root)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x235a9a90 (birchnutdrake)
[00:37:33]: Could not unload undefined prefab 0x32d080ea (drumstick)
[00:37:33]: Could not unload undefined prefab 0x18c46cd (glommerfuel)
[00:37:33]: Could not unload undefined prefab 0x11c7d51 (glommerwings)
[00:37:33]: Could not unload undefined prefab 0x162c669d (marble)
[00:37:33]: Could not unload undefined prefab 0x32fc24ed (cactus_flower)
[00:37:33]: Could not unload undefined prefab 0x2bcce899 (writeable_classified)
[00:37:33]: Could not unload undefined prefab 0x3306d1dc (thunder_far)
[00:37:33]: Could not unload undefined prefab 0x1796bd2a (lightning)
[00:37:33]: Could not unload undefined prefab 0x162c669d (marble)
[00:37:33]: Could not unload undefined prefab 0x184178b (meat)
[00:37:33]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:37:33]: Could not unload undefined prefab 0x184178b (meat)
[00:37:33]: Could not unload undefined prefab 0x184178b (meat)
[00:37:33]: Could not unload undefined prefab 0x1ddfa303 (horn)
[00:37:33]: Could not unload undefined prefab 0x22a4f6ff (bird_egg)
[00:37:33]: Could not unload undefined prefab 0x32d080ea (drumstick)
[00:37:33]: Could not unload undefined prefab 0x22a4f6ff (bird_egg)
[00:37:33]: Could not unload undefined prefab 0x184178b (meat)
[00:37:33]: Could not unload undefined prefab 0xb03e93a (trunk_summer)
[00:37:33]: Could not unload undefined prefab 0x184178b (meat)
[00:37:33]: Could not unload undefined prefab 0xb03e93a (trunk_summer)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x30a708a2 (bee)
[00:37:33]: Could not unload undefined prefab 0x184178b (meat)
[00:37:33]: Could not unload undefined prefab 0x2e264dbc (blowdart_pipe)
[00:37:33]: Could not unload undefined prefab 0x67bb53b (mole)
[00:37:33]: Could not unload undefined prefab 0x27bb85c8 (cave_entrance)
[00:37:33]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:37:33]: Could not unload undefined prefab 0x3de9fbd (teleportato_box)
[00:37:33]: Could not unload undefined prefab 0x45ac955 (teleportato_potato)
[00:37:33]: Could not unload undefined prefab 0x1f5630bd (dug_marsh_bush)
[00:37:33]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:37:33]: Could not unload undefined prefab 0x38e59fd (mist)
[00:37:33]: Could not unload undefined prefab 0x1d298b03 (snow)
[00:37:33]: Could not unload undefined prefab 0x162c669d (marble)
[00:37:33]: Could not unload undefined prefab 0x162c669d (marble)
[00:37:33]: Could not unload undefined prefab 0x2c507dbb (statueharp)
[00:37:33]: Could not unload undefined prefab 0x1e508f2e (statuemaxwell)
[00:37:33]: Could not unload undefined prefab 0x9d92cce (purpleamulet)
[00:37:33]: Could not unload undefined prefab 0x1765df93 (monkey)
[00:37:33]: Could not unload undefined prefab 0x67bb53b (mole)
[00:37:33]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:37:33]: Could not unload undefined prefab 0x30a708a2 (bee)
[00:37:33]: Could not unload undefined prefab 0xf174236 (feather_robin_winter)
[00:37:33]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:37:33]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:37:33]: Could not unload undefined prefab 0xc01796b (corn_seeds)
[00:37:33]: Could not unload undefined prefab 0x2d99608b (pumpkin_seeds)
[00:37:33]: Could not unload undefined prefab 0x2571d493 (butterfly)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x1eee0485 (transistor)
[00:37:33]: Could not unload undefined prefab 0x1c86b389 (froglegs)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:37:33]: Could not unload undefined prefab 0x6dddac (shadowmeteor)
[00:37:33]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:37:33]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:37:33]: Could not unload undefined prefab 0x1baa7bae (firehound)
[00:37:33]: Could not unload undefined prefab 0x1e17a690 (spat)
[00:37:33]: Could not unload undefined prefab 0x30bdcde6 (lavae_move_fx)
[00:37:33]: Could not unload undefined prefab 0xdcd8f65 (crawlinghorror)
[00:37:33]: Could not unload undefined prefab 0x25fd132f (shadowhand)
[00:37:33]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:37:33]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:37:33]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:37:33]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:37:33]: Could not unload undefined prefab 0x107f3fc2 (seeds)
[00:37:33]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:37:33]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:37:33]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:37:33]: Could not unload undefined prefab 0x107f3fc2 (seeds)
[00:37:33]: Could not unload undefined prefab 0xf174236 (feather_robin_winter)
[00:37:33]: Could not unload undefined prefab 0x67bb53b (mole)
[00:37:33]: Could not unload undefined prefab 0x24b8f3b (fireflies)
[00:37:33]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:37:33]: Could not unload undefined prefab 0x1c86b389 (froglegs)
[00:37:33]: Could not unload undefined prefab 0x86a562b (frogsplash)
[00:37:33]: Could not unload undefined prefab 0x30a708a2 (bee)
[00:37:33]: Could not unload undefined prefab 0xcc84da (moose_nest_fx_idle)
[00:37:33]: Could not unload undefined prefab 0x68af69d (goose_feather)
[00:37:33]: Could not unload undefined prefab 0x32d080ea (drumstick)
[00:37:33]: Could not unload undefined prefab 0x68af69d (goose_feather)
[00:37:33]: Could not unload undefined prefab 0x32d080ea (drumstick)
[00:37:33]: Could not unload undefined prefab 0x5bf8db2 (furtuft)
[00:37:33]: Could not unload undefined prefab 0xc2dcfd4 (firesplash_fx)
[00:37:33]: Could not unload undefined prefab 0x217767f3 (attackfire_fx)
[00:37:33]: Could not unload undefined prefab 0x19f41fd5 (dragon_scales)
[00:37:33]: Could not unload undefined prefab 0x30bdcde6 (lavae_move_fx)
[00:37:33]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:37:33]: Could not unload undefined prefab 0x184178b (meat)
[00:37:33]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:37:33]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:37:33]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:37:33]: Could not unload undefined prefab 0x1cba00e4 (chester_eyebone)
[00:37:33]: Could not unload undefined prefab 0xc2804d5 (sps_berrybush)
[00:37:33]: Could not unload undefined prefab 0x13897ec9 (berries_juicy)
[00:37:33]: Could not unload undefined prefab 0x269656ca (dug_berrybush_juicy)
[00:37:33]: Could not unload undefined prefab 0x32d080ea (drumstick)
[00:37:33]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:37:33]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:37:33]: Could not unload undefined prefab 0x266c2f16 (houndwarning_lvl1)
[00:37:33]: Could not unload undefined prefab 0x266c2f17 (houndwarning_lvl2)
[00:37:33]: Could not unload undefined prefab 0x266c2f18 (houndwarning_lvl3)
[00:37:33]: Could not unload undefined prefab 0x266c2f19 (houndwarning_lvl4)
[00:37:33]: Could not unload undefined prefab 0x28b9400d (deerclopswarning_lvl1)
[00:37:33]: Could not unload undefined prefab 0x28b9400e (deerclopswarning_lvl2)
[00:37:33]: Could not unload undefined prefab 0x28b9400f (deerclopswarning_lvl3)
[00:37:33]: Could not unload undefined prefab 0x28b94010 (deerclopswarning_lvl4)
[00:37:33]: Could not unload undefined prefab 0x1399a452 (beargerwarning_lvl1)
[00:37:33]: Could not unload undefined prefab 0x1399a453 (beargerwarning_lvl2)
[00:37:33]: Could not unload undefined prefab 0x1399a454 (beargerwarning_lvl3)
[00:37:33]: Could not unload undefined prefab 0x1399a455 (beargerwarning_lvl4)
[00:37:33]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0xc01796b (corn_seeds)
[00:37:33]: Could not unload undefined prefab 0x2cabadf1 (staffcastfx)
[00:37:33]: Could not unload undefined prefab 0x36458456 (stafflight)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x2cabadf1 (staffcastfx)
[00:37:33]: Could not unload undefined prefab 0x36458456 (stafflight)
[00:37:33]: Could not unload undefined prefab 0x39ecf974 (cutgrass)
[00:37:33]: Could not unload undefined prefab 0x94e85ed (campfirefire)
[00:37:33]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:37:33]: Could not unload undefined prefab 0x20331a8d (firepit_fanged)
[00:37:33]: Could not unload undefined prefab 0x1d79c25a (firepit_hole)
[00:37:33]: Could not unload undefined prefab 0x71127e3 (carrot_cooked)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x2cabadf1 (staffcastfx)
[00:37:33]: Could not unload undefined prefab 0x36458456 (stafflight)
[00:37:33]: Could not unload undefined prefab 0x39ecf974 (cutgrass)
[00:37:33]: Could not unload undefined prefab 0x359da624 (log)
[00:37:33]: Could not unload undefined prefab 0x29d8efdb (red_leaves_chop)
[00:37:33]: Could not unload undefined prefab 0x39590c78 (orange_leaves_chop)
[00:37:33]: Could not unload undefined prefab 0x2d1c40c (deciduous_root)
[00:37:33]: Could not unload undefined prefab 0x41ba89b5 (nightmarefuel)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x235a9a90 (birchnutdrake)
[00:37:33]: Could not unload undefined prefab 0x20c152ce (collapse_big)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x2d99608b (pumpkin_seeds)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x184178b (meat)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x4790f393 (deciduoustree)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x1549fe9 (explode_small)
[00:37:33]: Could not unload undefined prefab 0x4254b676 (splash_snow_fx)
[00:37:33]: Could not unload undefined prefab 0x184178b (meat)
[00:37:33]: Could not unload undefined prefab 0xe2bfa46 (tophat)
[00:37:33]: Could not unload undefined prefab 0x3abfcfab (pigskin)
[00:37:33]: Could not unload undefined prefab 0x344c1a3f (shadowminer)
[00:37:33]: Could not unload undefined prefab 0x2cabadf1 (staffcastfx)
[00:37:33]: Could not unload undefined prefab 0x36458456 (stafflight)
[00:37:33]: Could not unload undefined prefab 0x39ecf974 (cutgrass)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x18fee34b (brokenwall_ruins)
[00:37:33]: Could not unload undefined prefab 0x359da624 (log)
[00:37:33]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:37:33]: Could not unload undefined prefab 0x706870b6 (green_cap)
[00:37:33]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:37:33]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:37:33]: Could not unload undefined prefab 0x1a35332f (spore_medium)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:37:33]: Could not unload undefined prefab 0x12434e82 (gemsocket)
[00:37:33]: Could not unload undefined prefab 0x30a708a2 (bee)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x24b8f3b (fireflies)
[00:37:33]: Could not unload undefined prefab 0x109a4b4a (mandrakesoup)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x8737b1f4 (hotchili)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x82c1abbd (monsterlasagna)
[00:37:33]: Could not unload undefined prefab 0x113860b0 (powcake)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x8be4c476 (frogglebunwich)
[00:37:33]: Could not unload undefined prefab 0x3e819cf (wetgoop)
[00:37:33]: Could not unload undefined prefab 0x4ad6ef2c (pumpkincookie)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x417d9269 (meatballs)
[00:37:33]: Could not unload undefined prefab 0x1645ce02 (perogies)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x52c59920 (turkeydinner)
[00:37:33]: Could not unload undefined prefab 0x22b6bfb9 (stuffedeggplant)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x3920172a (unagi)
[00:37:33]: Could not unload undefined prefab 0x5cdc5516 (trailmix)
[00:37:33]: Could not unload undefined prefab 0x8405847b (fishsticks)
[00:37:33]: Could not unload undefined prefab 0x2b3f1f65 (jammypreserves)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x7c35f54 (kabobs)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x51e97b1a (ratatouille)
[00:37:33]: Could not unload undefined prefab 0x7adf9a50 (cookpot_survival)
[00:37:33]: Could not unload undefined prefab 0xf1e18b0 (coldfirefire)
[00:37:33]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0xf1e18b0 (coldfirefire)
[00:37:33]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:37:33]: Could not unload undefined prefab 0x20c152ce (collapse_big)
[00:37:33]: Could not unload undefined prefab 0x3fe15911 (durian_cooked)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x816018fb (wall_moonrock)
[00:37:33]: Could not unload undefined prefab 0x59c04273 (wall_moonrock_item_placer)
[00:37:33]: Could not unload undefined prefab 0x8362ab32 (tentacle)
[00:37:33]: Could not unload undefined prefab 0x91d186fb (shadow_despawn)
[00:37:33]: Could not unload undefined prefab 0x41ba89b5 (nightmarefuel)
[00:37:33]: Could not unload undefined prefab 0x8119781a (cookedmandrake)
[00:37:33]: Could not unload undefined prefab 0x8c6be253 (mandrake)
[00:37:33]: Could not unload undefined prefab 0x83232836 (wall_ruins)
[00:37:33]: Could not unload undefined prefab 0x8f9500ae (wall_ruins_item_placer)
[00:37:33]: Could not unload undefined prefab 0x8c6be253 (mandrake)
[00:37:33]: Could not unload undefined prefab 0xa694a25e (mandrake_planted)
[00:37:33]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:37:33]: Could not unload undefined prefab 0x1bdc0692 (shadowduelist)
[00:37:33]: Could not unload undefined prefab 0xf1761cf (bernie_inactive)
[00:37:33]: Could not unload undefined prefab 0xb50c4e4c (pinecone_sapling)
[00:37:33]: Could not unload undefined prefab 0x112002ba (twiggy_nut_sapling)
[00:37:33]: Could not unload undefined prefab 0x320ed27b (plant_normal)
[00:37:33]: Could not unload undefined prefab 0xaa352fa8 (farmrocktall)
[00:37:33]: Could not unload undefined prefab 0x24356d14 (farmrockflat)
[00:37:33]: Could not unload undefined prefab 0x5a2850b7 (stickleft)
[00:37:33]: Could not unload undefined prefab 0x476da331 (burntstickright)
[00:37:33]: Could not unload undefined prefab 0x6fce684 (signleft)
[00:37:33]: Could not unload undefined prefab 0x6a319031 (fencepost)
[00:37:33]: Could not unload undefined prefab 0x6fef50cb (fencepostright)
[00:37:33]: Could not unload undefined prefab 0xb3facc (burntfencepost)
[00:37:33]: Could not unload undefined prefab 0x891047f0 (burntfencepostright)
[00:37:33]: Could not unload undefined prefab 0x359da624 (log)
[00:37:33]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:37:33]: Could not unload undefined prefab 0x706870b6 (green_cap)
[00:37:33]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:37:33]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:37:33]: Could not unload undefined prefab 0xed18eed (spore_small)
[00:37:33]: Could not unload undefined prefab 0x8539b55b (mushtree_small_burntfx)
[00:37:33]: Could not unload undefined prefab 0x994e32df (mushtree_small_bloom_burntfx)
[00:37:33]: Could not unload undefined prefab 0x65eb274a (petals_evil)
[00:37:33]: Could not unload undefined prefab 0x359da624 (log)
[00:37:33]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:37:33]: Could not unload undefined prefab 0x706870b6 (green_cap)
[00:37:33]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:37:33]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:37:33]: Could not unload undefined prefab 0x5286daa7 (spore_tall)
[00:37:33]: Could not unload undefined prefab 0x9db421e9 (mushtree_tall_burntfx)
[00:37:33]: Could not unload undefined prefab 0x4336ea6d (mushtree_tall_bloom_burntfx)
[00:37:33]: Could not unload undefined prefab 0xbc5dcbd5 (poopcloud)
[00:37:33]: Could not unload undefined prefab 0x774f8c02 (snowball)
[00:37:33]: Could not unload undefined prefab 0x4254b676 (splash_snow_fx)
[00:37:33]: Could not unload undefined prefab 0x47329be (firesuppressor_glow)
[00:37:33]: Could not unload undefined prefab 0x184178b (meat)
[00:37:33]: Could not unload undefined prefab 0x359da624 (log)
[00:37:33]: Could not unload undefined prefab 0x1078732c (character_fire)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x9be18af2 (twigs)
[00:37:33]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:37:33]: Could not unload undefined prefab 0x184178b (meat)
[00:37:33]: Could not unload undefined prefab 0x359da624 (log)
[00:37:33]: Could not unload undefined prefab 0x1078732c (character_fire)
[00:37:33]: Could not unload undefined prefab 0x30a708a2 (bee)
[00:37:33]: Could not unload undefined prefab 0x8d0790fc (honeycomb)
[00:37:33]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:37:33]: Could not unload undefined prefab 0x22a4f6ff (bird_egg)
[00:37:33]: Could not unload undefined prefab 0x36b4bd17 (crow)
[00:37:33]: Could not unload undefined prefab 0x9c61daea (robin)
[00:37:33]: Could not unload undefined prefab 0xb8dc9dfa (robin_winter)
[00:37:33]: Could not unload undefined prefab 0xc7e99c14 (guano)
[00:37:33]: Could not unload undefined prefab 0x6d8df54b (wall_hay)
[00:37:33]: Could not unload undefined prefab 0x42632ec3 (wall_hay_item_placer)
[00:37:33]: Could not unload undefined prefab 0x1af6b572 (shadowtentacle)
[00:37:33]: Could not unload undefined prefab 0x94c7685d (ice_projectile)
[00:37:33]: Could not unload undefined prefab 0xc04fd6d2 (fire_projectile)
[00:37:33]: Could not unload undefined prefab 0x2cabadf1 (staffcastfx)
[00:37:33]: Could not unload undefined prefab 0x36458456 (stafflight)
[00:37:33]: Could not unload undefined prefab 0x39ecf974 (cutgrass)
[00:37:33]: Could not unload undefined prefab 0xb2e44c01 (forcefieldfx)
[00:37:33]: Could not unload undefined prefab 0x8362ab32 (tentacle)
[00:37:33]: Could not unload undefined prefab 0xb430ba46 (splash_ocean)
[00:37:33]: Could not unload undefined prefab 0xaeb1c368 (book_fx)
[00:37:33]: Could not unload undefined prefab 0xc4f29869 (petals)
[00:37:33]: Could not unload undefined prefab 0x2ffe1998 (flower_evil)
[00:37:33]: Could not unload undefined prefab 0x491192bf (lightning_rod_fx)
[00:37:33]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:37:33]: Could not unload undefined prefab 0x94c7685d (ice_projectile)
[00:37:33]: Could not unload undefined prefab 0xc04fd6d2 (fire_projectile)
[00:37:33]: Could not unload undefined prefab 0x2cabadf1 (staffcastfx)
[00:37:33]: Could not unload undefined prefab 0x36458456 (stafflight)
[00:37:33]: Could not unload undefined prefab 0x39ecf974 (cutgrass)
[00:37:33]: Could not unload undefined prefab 0xe2f01fef (balloon)
[00:37:33]: Could not unload undefined prefab 0xde56c6a5 (mosquitosack)
[00:37:33]: Could not unload undefined prefab 0x35e3acb2 (berries_cooked)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:37:33]: Could not unload undefined prefab 0x9ce1eaee (rocks)
[00:37:33]: Could not unload undefined prefab 0x7e6d93ac (nitre)
[00:37:33]: Could not unload undefined prefab 0xe5306269 (flint)
[00:37:33]: Could not unload undefined prefab 0xd3c23856 (goldnugget)
[00:37:33]: Could not unload undefined prefab 0xc63a5a5c (moonrocknugget)
[00:37:33]: Could not unload undefined prefab 0xcff76eec (rock_break_fx)
[00:37:33]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:37:33]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:37:33]: Could not unload undefined prefab 0x359da624 (log)
[00:37:33]: Could not unload undefined prefab 0xb7e66933 (pinecone)
[00:37:33]: Could not unload undefined prefab 0xec8853ad (charcoal)
[00:37:33]: Could not unload undefined prefab 0xd30548b6 (leif)
[00:37:33]: Could not unload undefined prefab 0xcf3ff3e9 (leif_sparse)
[00:37:33]: Could not unload undefined prefab 0xb9d7a9d0 (pine_needles_chop)
[00:37:33]: Could not unload undefined prefab 0x78d69cdc (rock_petrified_tree_short)
[00:37:33]: Could not unload undefined prefab 0x4f122f8c (rock_petrified_tree_med)
[00:37:33]: Could not unload undefined prefab 0xe8c52d0d (rock_petrified_tree_tall)
[00:37:33]: Could not unload undefined prefab 0x50155047 (rock_petrified_tree_old)
[00:37:33]: Could not unload undefined prefab 0xaec874c8 (disease_puff)
[00:37:33]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:37:33]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:37:33]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:37:33]: Could not unload undefined prefab 0x674707c2 (acorn_sapling)
[00:37:33]: Could not unload undefined prefab 0x7e58aebd (acorn_cooked)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x757f3023 (pomegranate_cooked)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x830c1c66 (pomegranate_seeds)
[00:37:33]: Could not unload undefined prefab 0xecb2fd20 (eggplant_cooked)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0xd5a44029 (eggplant_seeds)
[00:37:33]: Could not unload undefined prefab 0x92132840 (poop)
[00:37:33]: Could not unload undefined prefab 0xbc74c3cb (bedroll_furry_quilt_white_ivory)
[00:37:33]: Could not unload undefined prefab 0x36b4bd17 (crow)
[00:37:33]: Could not unload undefined prefab 0x9c61daea (robin)
[00:37:33]: Could not unload undefined prefab 0xb8dc9dfa (robin_winter)
[00:37:33]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:37:33]: Could not unload undefined prefab 0x8efaa286 (impact)
[00:37:33]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:37:33]: Could not unload undefined prefab 0x359da624 (log)
[00:37:33]: Could not unload undefined prefab 0x9be18af2 (twigs)
[00:37:33]: Could not unload undefined prefab 0xb0a79a1 (twiggy_nut)
[00:37:33]: Could not unload undefined prefab 0xec8853ad (charcoal)
[00:37:33]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:37:33]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:37:33]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:37:33]: Could not unload undefined prefab 0xca3a1095 (diseaseflies)
[00:37:34]: Mod: workshop-365119238 (SmartCrockPot)    Registering prefabs    
[00:37:34]: Mod: workshop-365119238 (SmartCrockPot)      Registering default mod prefab    
[00:37:34]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Registering prefabs    
[00:37:34]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Registering prefab file: prefabs/mapiconhelper    
[00:37:34]: Mod: workshop-672584952 ([Updated] Complete Your Map)        mapiconhelper    
[00:37:34]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Registering default mod prefab    
[00:37:34]: Mod: workshop-362906105 (Sticky Recipe)    Registering prefabs    
[00:37:34]: Mod: workshop-362906105 (Sticky Recipe)      Registering default mod prefab    
[00:37:34]: Mod: workshop-344071294 (Quick Emotes)    Registering prefabs    
[00:37:34]: Mod: workshop-344071294 (Quick Emotes)      Registering default mod prefab    
[00:37:34]: Mod: workshop-539957958 (Persistent Compass HUD)    Registering prefabs    
[00:37:34]: Mod: workshop-539957958 (Persistent Compass HUD)      Registering default mod prefab    
[00:37:34]: Mod: workshop-367593872 (No More Lag)    Registering prefabs    
[00:37:34]: Mod: workshop-367593872 (No More Lag)      Registering default mod prefab    
[00:37:34]: Mod: workshop-345692228 (Minimap HUD)    Registering prefabs    
[00:37:34]: Mod: workshop-345692228 (Minimap HUD)      Registering default mod prefab    
[00:37:34]: Mod: workshop-661284815 (Improved Force Attack)    Registering prefabs    
[00:37:34]: Mod: workshop-661284815 (Improved Force Attack)      Registering default mod prefab    
[00:37:34]: Mod: workshop-376333686 (Combined Status)    Registering prefabs    
[00:37:34]: Mod: workshop-376333686 (Combined Status)      Registering default mod prefab    
[00:37:34]: Mod: workshop-394612159 (Auto ReTrap)    Registering prefabs    
[00:37:34]: Mod: workshop-394612159 (Auto ReTrap)      Registering default mod prefab    
[00:37:34]: Mod: workshop-609051112 (Action Queue(DST))    Registering prefabs    
[00:37:34]: Mod: workshop-609051112 (Action Queue(DST))      Registering default mod prefab    
[00:37:34]: Mod: workshop-694531911 ( [DST]Aerial view)    Registering prefabs    
[00:37:34]: Mod: workshop-694531911 ( [DST]Aerial view)      Registering default mod prefab    
[00:37:34]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Registering prefabs    
[00:37:34]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Registering prefab file: prefabs/range    
[00:37:34]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])        range_indicator_client    
[00:37:34]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Registering default mod prefab    
[00:37:34]: Mod: workshop-351325790 (Geometric Placement)    Registering prefabs    
[00:37:34]: Mod: workshop-351325790 (Geometric Placement)      Registering prefab file: prefabs/buildgridplacer    
[00:37:34]: Mod: workshop-351325790 (Geometric Placement)        buildgridplacer    
[00:37:34]: Mod: workshop-351325790 (Geometric Placement)      Registering default mod prefab    
[00:37:34]:     LOAD BE    
[00:37:35]:     LOAD BE: done    
[00:37:35]: Loading world: client_temp/server_save    
[00:37:35]: Save file is at version 3    
[00:37:35]: MiniMapComponent::AddAtlas( minimap/minimap_data.xml )
[00:37:35]: MiniMapComponent::AddAtlas( ../mods/workshop-672584952/minimap/moreminimapicons.xml )
[00:37:36]: Loading Nav Grid    
[00:37:36]: Reconstructing topology    
[00:37:36]:     ...Sorting points    
[00:37:36]:     ...Sorting edges    
[00:37:36]:     ...Connecting nodes    
[00:37:36]:     ...Validating connections    
[00:37:36]:     ...Housekeeping    
[00:37:36]:     ...Done!    
[00:37:36]: ModIndex: Load sequence finished successfully.    
[00:37:36]: Reset() returning
[00:37:36]: Attempting to send resume request
[00:37:37]: ReceiveResumeNotification
[00:37:37]: Loading minimap: session/205FAE30949107FC/KU_bPVGW5kg_/minimap
[00:37:37]: Deserializing cached icon data: 176
[00:37:37]: Deserializing tile data (425 x 425)
[00:42:18]: Serializing minimap: session/205FAE30949107FC/KU_bPVGW5kg_/minimap
[00:42:18]: Serializing user: session/90E621F09490DBD1/KU_bPVGW5kg_/0000000001
[00:42:18]: Serializing minimap: session/205FAE30949107FC/KU_bPVGW5kg_/minimap
[00:42:18]: [Shard] Starting connection to destination server...
[00:42:18]: [Shard] Getting info of destination server...
[00:42:18]: Received ID_DST_SHARD_SILENT_DISCONNECT
[00:42:19]: Attempting to send resume request
[00:42:19]: [Shard] OnDestinationInfoResponse Connecting to master=(Y)
[00:42:19]: [Shard] OnDestinationInfoResponse migration info: 86.89.118.65|11000 
[00:42:19]: [Connect] SetMigrationInfo 86.89.118.65|11000 [90103047099061249]
[00:42:19]: unloading prefabs for mod MOD_workshop-365119238    
[00:42:19]: unloading prefabs for mod MOD_workshop-672584952    
[00:42:19]: unloading prefabs for mod MOD_workshop-362906105    
[00:42:19]: unloading prefabs for mod MOD_workshop-344071294    
[00:42:19]: unloading prefabs for mod MOD_workshop-539957958    
[00:42:19]: unloading prefabs for mod MOD_workshop-367593872    
[00:42:19]: unloading prefabs for mod MOD_workshop-345692228    
[00:42:19]: unloading prefabs for mod MOD_workshop-661284815    
[00:42:19]: unloading prefabs for mod MOD_workshop-376333686    
[00:42:19]: unloading prefabs for mod MOD_workshop-394612159    
[00:42:19]: unloading prefabs for mod MOD_workshop-609051112    
[00:42:19]: unloading prefabs for mod MOD_workshop-694531911    
[00:42:19]: unloading prefabs for mod MOD_workshop-522023088    
[00:42:19]: unloading prefabs for mod MOD_workshop-351325790    
[00:42:19]: Collecting garbage...
[00:42:19]: lua_gc took 0.01 seconds
[00:42:19]: ~ShardLuaProxy()
[00:42:19]: ~ItemServerLuaProxy()
[00:42:19]: ~InventoryLuaProxy()
[00:42:19]: ~NetworkLuaProxy()
[00:42:19]: ~SimLuaProxy()
[00:42:19]: SteamWorkshop::CancelDownloads clearing all unfinished downloads
[00:42:19]: lua_close took 0.01 seconds
[00:42:19]: ReleaseAll
[00:42:19]: ReleaseAll Finished
[00:42:19]: cGame::StartPlaying
[00:42:19]: LOADING LUA
[00:42:19]: DoLuaFile scripts/main.lua
[00:42:19]: DoLuaFile loading buffer scripts/main.lua
[00:42:19]: running main.lua
    
[00:42:19]: loaded modindex    
[00:42:19]: ModIndex: Beginning normal load sequence.
    
[00:42:19]: ModIndex:GetModsToLoad inserting moddir,     workshop-344071294    
[00:42:19]: ModIndex:GetModsToLoad inserting moddir,     workshop-345692228    
[00:42:19]: ModIndex:GetModsToLoad inserting moddir,     workshop-351325790    
[00:42:19]: ModIndex:GetModsToLoad inserting moddir,     workshop-362906105    
[00:42:19]: ModIndex:GetModsToLoad inserting moddir,     workshop-365119238    
[00:42:19]: ModIndex:GetModsToLoad inserting moddir,     workshop-367593872    
[00:42:19]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:42:19]: ModIndex:GetModsToLoad inserting moddir,     workshop-394612159    
[00:42:19]: ModIndex:GetModsToLoad inserting moddir,     workshop-522023088    
[00:42:19]: ModIndex:GetModsToLoad inserting moddir,     workshop-539957958    
[00:42:19]: ModIndex:GetModsToLoad inserting moddir,     workshop-609051112    
[00:42:19]: ModIndex:GetModsToLoad inserting moddir,     workshop-661284815    
[00:42:19]: ModIndex:GetModsToLoad inserting moddir,     workshop-672584952    
[00:42:19]: ModIndex:GetModsToLoad inserting moddir,     workshop-694531911    
[00:42:19]: Could not load mod_config_data/modconfiguration_workshop-344071294    
[00:42:19]: Loading mod: workshop-344071294 (Quick Emotes) Version:1.7    
[00:42:19]: loaded mod_config_data/modconfiguration_workshop-345692228    
[00:42:19]: Loading mod: workshop-345692228 (Minimap HUD) Version:1.0.7    
[00:42:19]: loaded mod_config_data/modconfiguration_workshop-351325790    
[00:42:19]: Loading mod: workshop-351325790 (Geometric Placement) Version:2.1.1    
[00:42:19]: Could not load mod_config_data/modconfiguration_workshop-362906105    
[00:42:19]: Loading mod: workshop-362906105 (Sticky Recipe) Version:1.1.2    
[00:42:19]: Could not load mod_config_data/modconfiguration_workshop-365119238    
[00:42:19]: Loading mod: workshop-365119238 (SmartCrockPot) Version:4.02    
[00:42:19]: Could not load mod_config_data/modconfiguration_workshop-367593872    
[00:42:19]: Loading mod: workshop-367593872 (No More Lag) Version:1.1.2    
[00:42:19]: Could not load mod_config_data/modconfiguration_workshop-376333686    
[00:42:19]: Loading mod: workshop-376333686 (Combined Status) Version:1.6.6    
[00:42:19]: Could not load mod_config_data/modconfiguration_workshop-394612159    
[00:42:19]: Loading mod: workshop-394612159 (Auto ReTrap) Version:1.02    
[00:42:19]: Could not load mod_config_data/modconfiguration_workshop-522023088    
[00:42:19]: Loading mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT]) Version:1.2.4    
[00:42:19]: Could not load mod_config_data/modconfiguration_workshop-539957958    
[00:42:19]: Loading mod: workshop-539957958 (Persistent Compass HUD) Version:0.1    
[00:42:19]: Could not load mod_config_data/modconfiguration_workshop-609051112    
[00:42:19]: Loading mod: workshop-609051112 (Action Queue(DST)) Version:1.2.6    
[00:42:19]: Could not load mod_config_data/modconfiguration_workshop-661284815    
[00:42:19]: Loading mod: workshop-661284815 (Improved Force Attack) Version:0.5    
[00:42:19]: loaded mod_config_data/modconfiguration_workshop-672584952    
[00:42:19]: Loading mod: workshop-672584952 ([Updated] Complete Your Map) Version:4.32c    
[00:42:19]: loaded mod_config_data/modconfiguration_workshop-694531911    
[00:42:19]: Loading mod: workshop-694531911 ( [DST]Aerial view) Version:1.1.2    
[00:42:19]: Mod: workshop-365119238 (SmartCrockPot)    Loading modworldgenmain.lua    
[00:42:19]: Mod: workshop-365119238 (SmartCrockPot)      Mod had no modworldgenmain.lua. Skipping.    
[00:42:19]: Mod: workshop-365119238 (SmartCrockPot)    Loading modmain.lua    
[00:42:19]: modimport: ../mods/workshop-365119238/modmain_segments/containerwidgetfunction.lua    
[00:42:19]: modimport: ../mods/workshop-365119238/modmain_segments/containers_setup.lua    
[00:42:19]: modimport: ../mods/workshop-365119238/modmain_segments/action_predict.lua    
[00:42:19]: WARNING: Positional Action parameters are deprecated. Please pass action a table instead.    
[00:42:19]: Action defined at     ../mods/workshop-365119238/modmain_segments/action_predict.lua:1 in (local) result (main) <0-0>    
[00:42:19]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Loading modworldgenmain.lua    
[00:42:19]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Mod had no modworldgenmain.lua. Skipping.    
[00:42:19]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Loading modmain.lua    
[00:42:19]: Mod: workshop-362906105 (Sticky Recipe)    Loading modworldgenmain.lua    
[00:42:19]: Mod: workshop-362906105 (Sticky Recipe)      Mod had no modworldgenmain.lua. Skipping.    
[00:42:19]: Mod: workshop-362906105 (Sticky Recipe)    Loading modmain.lua    
[00:42:20]: Mod: workshop-344071294 (Quick Emotes)    Loading modworldgenmain.lua    
[00:42:20]: Mod: workshop-344071294 (Quick Emotes)      Mod had no modworldgenmain.lua. Skipping.    
[00:42:20]: Mod: workshop-344071294 (Quick Emotes)    Loading modmain.lua    
[00:42:20]: Mod: workshop-539957958 (Persistent Compass HUD)    Loading modworldgenmain.lua    
[00:42:20]: Mod: workshop-539957958 (Persistent Compass HUD)      Mod had no modworldgenmain.lua. Skipping.    
[00:42:20]: Mod: workshop-539957958 (Persistent Compass HUD)    Loading modmain.lua    
[00:42:20]: Mod: workshop-367593872 (No More Lag)    Loading modworldgenmain.lua    
[00:42:20]: Mod: workshop-367593872 (No More Lag)      Mod had no modworldgenmain.lua. Skipping.    
[00:42:20]: Mod: workshop-367593872 (No More Lag)    Loading modmain.lua    
[00:42:20]: Mod: workshop-345692228 (Minimap HUD)    Loading modworldgenmain.lua    
[00:42:20]: Mod: workshop-345692228 (Minimap HUD)      Mod had no modworldgenmain.lua. Skipping.    
[00:42:20]: Mod: workshop-345692228 (Minimap HUD)    Loading modmain.lua    
[00:42:20]: Mod: workshop-661284815 (Improved Force Attack)    Loading modworldgenmain.lua    
[00:42:20]: Mod: workshop-661284815 (Improved Force Attack)      Mod had no modworldgenmain.lua. Skipping.    
[00:42:20]: Mod: workshop-661284815 (Improved Force Attack)    Loading modmain.lua    
[00:42:20]: Mod: workshop-376333686 (Combined Status)    Loading modworldgenmain.lua    
[00:42:20]: Mod: workshop-376333686 (Combined Status)      Mod had no modworldgenmain.lua. Skipping.    
[00:42:20]: Mod: workshop-376333686 (Combined Status)    Loading modmain.lua    
[00:42:20]: ModIndex:GetModsToLoad inserting moddir,     workshop-344071294    
[00:42:20]: ModIndex:GetModsToLoad inserting moddir,     workshop-345692228    
[00:42:20]: ModIndex:GetModsToLoad inserting moddir,     workshop-351325790    
[00:42:20]: ModIndex:GetModsToLoad inserting moddir,     workshop-362906105    
[00:42:20]: ModIndex:GetModsToLoad inserting moddir,     workshop-365119238    
[00:42:20]: ModIndex:GetModsToLoad inserting moddir,     workshop-367593872    
[00:42:20]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:42:20]: ModIndex:GetModsToLoad inserting moddir,     workshop-394612159    
[00:42:20]: ModIndex:GetModsToLoad inserting moddir,     workshop-522023088    
[00:42:20]: ModIndex:GetModsToLoad inserting moddir,     workshop-539957958    
[00:42:20]: ModIndex:GetModsToLoad inserting moddir,     workshop-609051112    
[00:42:20]: ModIndex:GetModsToLoad inserting moddir,     workshop-661284815    
[00:42:20]: ModIndex:GetModsToLoad inserting moddir,     workshop-672584952    
[00:42:20]: ModIndex:GetModsToLoad inserting moddir,     workshop-694531911    
[00:42:20]: Mod: workshop-394612159 (Auto ReTrap)    Loading modworldgenmain.lua    
[00:42:20]: Mod: workshop-394612159 (Auto ReTrap)      Mod had no modworldgenmain.lua. Skipping.    
[00:42:20]: Mod: workshop-394612159 (Auto ReTrap)    Loading modmain.lua    
[00:42:20]: Mod: workshop-609051112 (Action Queue(DST))    Loading modworldgenmain.lua    
[00:42:20]: Mod: workshop-609051112 (Action Queue(DST))      Mod had no modworldgenmain.lua. Skipping.    
[00:42:20]: Mod: workshop-609051112 (Action Queue(DST))    Loading modmain.lua    
[00:42:20]: Mod: workshop-694531911 ( [DST]Aerial view)    Loading modworldgenmain.lua    
[00:42:20]: Mod: workshop-694531911 ( [DST]Aerial view)      Mod had no modworldgenmain.lua. Skipping.    
[00:42:20]: Mod: workshop-694531911 ( [DST]Aerial view)    Loading modmain.lua    
[00:42:20]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Loading modworldgenmain.lua    
[00:42:20]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Mod had no modworldgenmain.lua. Skipping.    
[00:42:20]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Loading modmain.lua    
[00:42:20]: Client Version Running    
[00:42:20]: Mod: workshop-351325790 (Geometric Placement)    Loading modworldgenmain.lua    
[00:42:20]: Mod: workshop-351325790 (Geometric Placement)      Mod had no modworldgenmain.lua. Skipping.    
[00:42:20]: Mod: workshop-351325790 (Geometric Placement)    Loading modmain.lua    
[00:42:20]: LOADING LUA SUCCESS
[00:42:20]: PlayerDeaths loaded morgue    2056    
[00:42:20]: PlayerHistory loaded player_history    11526    
[00:42:20]: bloom_enabled    false    
[00:42:20]: loaded saveindex    
[00:42:20]: OnFilesLoaded()    
[00:42:20]: OnUpdatePurchaseStateComplete    
[00:42:20]: [Connect] Init client connection to 86.89.118.65|11000
[00:42:20]: [Connect] PendingConnection::Reset(true)
[00:42:20]: [Steam] Game Connection terminated (1098275158|11001)
[00:42:20]: [Shard] Stopping shard mode
[00:42:20]: SteamWorkshop::CancelDownloads clearing all unfinished downloads
[00:42:20]: [Connect] InternalInitClient <8770282725600464169>
[00:42:20]: [Shard] Starting shard mode as player
[00:42:20]: [Connect] No server listing found for <UNASSIGNED_RAKNET_GUID>
[00:42:20]: [Connect] Sending ping(s)...
[00:42:20]: [Connect] Ping 86.89.118.65|11000
[00:42:20]: ModIndex: Load sequence finished successfully.    
[00:42:20]: Reset() returning
[00:42:20]: [Connect] Ping response from 86.89.118.65|11000
[00:42:20]: [Connect] Joining server from ping response...
[00:42:20]: [Connect] Got join server response from lua
[00:42:21]: [200] Account Communication Success (13)
[00:42:21]: [Connect] PendingConnectionDoConnect to 86.89.118.65|11000
[00:42:21]: [Connect] DirectConnect to 86.89.118.65|11000
[00:42:21]: Connection accepted to 86.89.118.65|11000 <16915548013395816059>
[00:42:21]: Network external address discovered: 86.25.97.9|50069
[00:42:21]: SendClientHandShakePacket "re^eyJVc2VySUQiOiJLVV9iUFZHVzVrZyIsIkdhbWUiOiJEb250U3RhcnZlVG9nZXRoZXIiLCJQdXJwb3NlIjoiR2FtZVNlc3Npb24ifQ==^gnMTVeWflEps7C8XUQ+3EucIxmTXjI+h" to <16915548013395816059>
[00:42:22]: DeserializeHandShakeServerListing
[00:42:22]: Network tick rate: U=10(3), D=15
[00:42:22]: Version: 186853
[00:42:22]: [Steam] Game Connection initiated
[00:42:22]: Begin Session: 90E621F09490DBD1
[00:42:22]: Done Downloading Client Object Data
[00:42:22]: DownloadMods and temp disable    
[00:42:22]: Downloading [5] From: server_temp
[00:42:23]: 5 (40%) 1/1 server_temp/server_save 114000b / 283287b
[00:42:23]: 5 (80%) 1/1 server_temp/server_save 228000b / 283287b
[00:42:23]: 5 (100%) 1/1 server_temp/server_save 283287b / 283287b
[00:42:23]: Download complete[5] Files: 1 Size: 283287
[00:42:23]: Collecting garbage...
[00:42:23]: lua_gc took 0.02 seconds
[00:42:23]: ~ShardLuaProxy()
[00:42:23]: ~ItemServerLuaProxy()
[00:42:23]: ~InventoryLuaProxy()
[00:42:23]: ~NetworkLuaProxy()
[00:42:23]: ~SimLuaProxy()
[00:42:23]: SteamWorkshop::CancelDownloads clearing all unfinished downloads
[00:42:23]: lua_close took 0.02 seconds
[00:42:23]: ReleaseAll
[00:42:23]: ReleaseAll Finished
[00:42:23]: cGame::StartPlaying
[00:42:23]: LOADING LUA
[00:42:23]: DoLuaFile scripts/main.lua
[00:42:23]: DoLuaFile loading buffer scripts/main.lua
[00:42:23]: running main.lua
    
[00:42:23]: loaded modindex    
[00:42:23]: ModIndex: Beginning normal load sequence.
    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-344071294    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-345692228    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-351325790    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-362906105    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-365119238    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-367593872    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-394612159    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-522023088    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-539957958    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-609051112    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-661284815    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-672584952    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-694531911    
[00:42:23]: Could not load mod_config_data/modconfiguration_workshop-344071294    
[00:42:23]: Loading mod: workshop-344071294 (Quick Emotes) Version:1.7    
[00:42:23]: loaded mod_config_data/modconfiguration_workshop-345692228    
[00:42:23]: Loading mod: workshop-345692228 (Minimap HUD) Version:1.0.7    
[00:42:23]: loaded mod_config_data/modconfiguration_workshop-351325790    
[00:42:23]: Loading mod: workshop-351325790 (Geometric Placement) Version:2.1.1    
[00:42:23]: Could not load mod_config_data/modconfiguration_workshop-362906105    
[00:42:23]: Loading mod: workshop-362906105 (Sticky Recipe) Version:1.1.2    
[00:42:23]: Could not load mod_config_data/modconfiguration_workshop-365119238    
[00:42:23]: Loading mod: workshop-365119238 (SmartCrockPot) Version:4.02    
[00:42:23]: Could not load mod_config_data/modconfiguration_workshop-367593872    
[00:42:23]: Loading mod: workshop-367593872 (No More Lag) Version:1.1.2    
[00:42:23]: Could not load mod_config_data/modconfiguration_workshop-376333686    
[00:42:23]: Loading mod: workshop-376333686 (Combined Status) Version:1.6.6    
[00:42:23]: Could not load mod_config_data/modconfiguration_workshop-394612159    
[00:42:23]: Loading mod: workshop-394612159 (Auto ReTrap) Version:1.02    
[00:42:23]: Could not load mod_config_data/modconfiguration_workshop-522023088    
[00:42:23]: Loading mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT]) Version:1.2.4    
[00:42:23]: Could not load mod_config_data/modconfiguration_workshop-539957958    
[00:42:23]: Loading mod: workshop-539957958 (Persistent Compass HUD) Version:0.1    
[00:42:23]: Could not load mod_config_data/modconfiguration_workshop-609051112    
[00:42:23]: Loading mod: workshop-609051112 (Action Queue(DST)) Version:1.2.6    
[00:42:23]: Could not load mod_config_data/modconfiguration_workshop-661284815    
[00:42:23]: Loading mod: workshop-661284815 (Improved Force Attack) Version:0.5    
[00:42:23]: loaded mod_config_data/modconfiguration_workshop-672584952    
[00:42:23]: Loading mod: workshop-672584952 ([Updated] Complete Your Map) Version:4.32c    
[00:42:23]: loaded mod_config_data/modconfiguration_workshop-694531911    
[00:42:23]: Loading mod: workshop-694531911 ( [DST]Aerial view) Version:1.1.2    
[00:42:23]: Mod: workshop-365119238 (SmartCrockPot)    Loading modworldgenmain.lua    
[00:42:23]: Mod: workshop-365119238 (SmartCrockPot)      Mod had no modworldgenmain.lua. Skipping.    
[00:42:23]: Mod: workshop-365119238 (SmartCrockPot)    Loading modmain.lua    
[00:42:23]: modimport: ../mods/workshop-365119238/modmain_segments/containerwidgetfunction.lua    
[00:42:23]: modimport: ../mods/workshop-365119238/modmain_segments/containers_setup.lua    
[00:42:23]: modimport: ../mods/workshop-365119238/modmain_segments/action_predict.lua    
[00:42:23]: WARNING: Positional Action parameters are deprecated. Please pass action a table instead.    
[00:42:23]: Action defined at     ../mods/workshop-365119238/modmain_segments/action_predict.lua:1 in (local) result (main) <0-0>    
[00:42:23]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Loading modworldgenmain.lua    
[00:42:23]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Mod had no modworldgenmain.lua. Skipping.    
[00:42:23]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Loading modmain.lua    
[00:42:23]: Mod: workshop-362906105 (Sticky Recipe)    Loading modworldgenmain.lua    
[00:42:23]: Mod: workshop-362906105 (Sticky Recipe)      Mod had no modworldgenmain.lua. Skipping.    
[00:42:23]: Mod: workshop-362906105 (Sticky Recipe)    Loading modmain.lua    
[00:42:23]: Mod: workshop-344071294 (Quick Emotes)    Loading modworldgenmain.lua    
[00:42:23]: Mod: workshop-344071294 (Quick Emotes)      Mod had no modworldgenmain.lua. Skipping.    
[00:42:23]: Mod: workshop-344071294 (Quick Emotes)    Loading modmain.lua    
[00:42:23]: Mod: workshop-539957958 (Persistent Compass HUD)    Loading modworldgenmain.lua    
[00:42:23]: Mod: workshop-539957958 (Persistent Compass HUD)      Mod had no modworldgenmain.lua. Skipping.    
[00:42:23]: Mod: workshop-539957958 (Persistent Compass HUD)    Loading modmain.lua    
[00:42:23]: Mod: workshop-367593872 (No More Lag)    Loading modworldgenmain.lua    
[00:42:23]: Mod: workshop-367593872 (No More Lag)      Mod had no modworldgenmain.lua. Skipping.    
[00:42:23]: Mod: workshop-367593872 (No More Lag)    Loading modmain.lua    
[00:42:23]: Mod: workshop-345692228 (Minimap HUD)    Loading modworldgenmain.lua    
[00:42:23]: Mod: workshop-345692228 (Minimap HUD)      Mod had no modworldgenmain.lua. Skipping.    
[00:42:23]: Mod: workshop-345692228 (Minimap HUD)    Loading modmain.lua    
[00:42:23]: Mod: workshop-661284815 (Improved Force Attack)    Loading modworldgenmain.lua    
[00:42:23]: Mod: workshop-661284815 (Improved Force Attack)      Mod had no modworldgenmain.lua. Skipping.    
[00:42:23]: Mod: workshop-661284815 (Improved Force Attack)    Loading modmain.lua    
[00:42:23]: Mod: workshop-376333686 (Combined Status)    Loading modworldgenmain.lua    
[00:42:23]: Mod: workshop-376333686 (Combined Status)      Mod had no modworldgenmain.lua. Skipping.    
[00:42:23]: Mod: workshop-376333686 (Combined Status)    Loading modmain.lua    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-344071294    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-345692228    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-351325790    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-362906105    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-365119238    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-367593872    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-394612159    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-522023088    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-539957958    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-609051112    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-661284815    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-672584952    
[00:42:23]: ModIndex:GetModsToLoad inserting moddir,     workshop-694531911    
[00:42:23]: Mod: workshop-394612159 (Auto ReTrap)    Loading modworldgenmain.lua    
[00:42:23]: Mod: workshop-394612159 (Auto ReTrap)      Mod had no modworldgenmain.lua. Skipping.    
[00:42:23]: Mod: workshop-394612159 (Auto ReTrap)    Loading modmain.lua    
[00:42:23]: Mod: workshop-609051112 (Action Queue(DST))    Loading modworldgenmain.lua    
[00:42:23]: Mod: workshop-609051112 (Action Queue(DST))      Mod had no modworldgenmain.lua. Skipping.    
[00:42:23]: Mod: workshop-609051112 (Action Queue(DST))    Loading modmain.lua    
[00:42:23]: Mod: workshop-694531911 ( [DST]Aerial view)    Loading modworldgenmain.lua    
[00:42:23]: Mod: workshop-694531911 ( [DST]Aerial view)      Mod had no modworldgenmain.lua. Skipping.    
[00:42:23]: Mod: workshop-694531911 ( [DST]Aerial view)    Loading modmain.lua    
[00:42:23]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Loading modworldgenmain.lua    
[00:42:23]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Mod had no modworldgenmain.lua. Skipping.    
[00:42:23]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Loading modmain.lua    
[00:42:23]: Client Version Running    
[00:42:23]: Mod: workshop-351325790 (Geometric Placement)    Loading modworldgenmain.lua    
[00:42:23]: Mod: workshop-351325790 (Geometric Placement)      Mod had no modworldgenmain.lua. Skipping.    
[00:42:23]: Mod: workshop-351325790 (Geometric Placement)    Loading modmain.lua    
[00:42:23]: LOADING LUA SUCCESS
[00:42:23]: PlayerDeaths loaded morgue    2056    
[00:42:23]: PlayerHistory loaded player_history    11526    
[00:42:23]: bloom_enabled    false    
[00:42:23]: loaded saveindex    
[00:42:23]: OnFilesLoaded()    
[00:42:23]: OnUpdatePurchaseStateComplete    
[00:42:23]:     Unload FE    
[00:42:23]:     Unload FE done    
[00:42:23]: Could not unload undefined prefab 0x184178b (meat)
[00:42:23]: Could not unload undefined prefab 0x1951bb3 (merm)
[00:42:23]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:42:23]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:42:23]: Could not unload undefined prefab 0x184178b (meat)
[00:42:23]: Could not unload undefined prefab 0x116a891d (backpack_mushy)
[00:42:23]: Could not unload undefined prefab 0x12d1229f (backpack_poop)
[00:42:23]: Could not unload undefined prefab 0x138df44d (hutch_move_fx)
[00:42:23]: Could not unload undefined prefab 0x1a35332f (spore_medium)
[00:42:23]: Could not unload undefined prefab 0x94e85ed (campfirefire)
[00:42:23]: Could not unload undefined prefab 0x1baa7bae (firehound)
[00:42:23]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:42:23]: Could not unload undefined prefab 0x184178b (meat)
[00:42:23]: Could not unload undefined prefab 0x6d4e973 (spat_splash_fx_full)
[00:42:23]: Could not unload undefined prefab 0x162c669d (marble)
[00:42:23]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:42:23]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:42:23]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:42:23]: Could not unload undefined prefab 0x6647de8 (wall_stone_item_placer)
[00:42:23]: Could not unload undefined prefab 0x24356d14 (farmrockflat)
[00:42:23]: Could not unload undefined prefab 0x6fce684 (signleft)
[00:42:23]: Could not unload undefined prefab 0xb3facc (burntfencepost)
[00:42:23]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:42:23]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:42:23]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:42:23]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x222dd5a3 (torch_shadow)
[00:42:23]: Could not unload undefined prefab 0x162c669d (marble)
[00:42:23]: Could not unload undefined prefab 0x1549fe9 (explode_small)
[00:42:23]: Could not unload undefined prefab 0x1549fe9 (explode_small)
[00:42:23]: Could not unload undefined prefab 0x1549fe9 (explode_small)
[00:42:23]: Could not unload undefined prefab 0x1549fe9 (explode_small)
[00:42:23]: Could not unload undefined prefab 0x2132defc (warningshadow)
[00:42:23]: Could not unload undefined prefab 0xead0d51 (cavelight_small)
[00:42:23]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:42:23]: Could not unload undefined prefab 0x9d92cce (purpleamulet)
[00:42:23]: Could not unload undefined prefab 0x2ca456a0 (orangeamulet)
[00:42:23]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:42:23]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:42:23]: Could not unload undefined prefab 0x1765df93 (monkey)
[00:42:23]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:42:23]: Could not unload undefined prefab 0x9d92cce (purpleamulet)
[00:42:23]: Could not unload undefined prefab 0x2ca456a0 (orangeamulet)
[00:42:23]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:42:23]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:42:23]: Could not unload undefined prefab 0x1765df93 (monkey)
[00:42:23]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:42:23]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:42:23]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:42:23]: Could not unload undefined prefab 0x1ad851d9 (mushtree_medium)
[00:42:23]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:42:23]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:42:23]: Could not unload undefined prefab 0xed18eed (spore_small)
[00:42:23]: Could not unload undefined prefab 0x16f0b2bb (mushtree_tall_webbed)
[00:42:23]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:42:23]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:42:23]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:42:23]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:42:23]: Could not unload undefined prefab 0x2aee1328 (tentacle_pillar_hole)
[00:42:23]: Could not unload undefined prefab 0xf57ee3 (rockyherd)
[00:42:23]: Could not unload undefined prefab 0x1765df93 (monkey)
[00:42:23]: Could not unload undefined prefab 0x1765df93 (monkey)
[00:42:23]: Could not unload undefined prefab 0x1078732c (character_fire)
[00:42:23]: Could not unload undefined prefab 0x1549fe9 (explode_small)
[00:42:23]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:42:23]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:42:23]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:42:23]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:42:23]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:42:23]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:42:23]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:42:23]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:42:23]: Could not unload undefined prefab 0x291cde91 (ruins_vase)
[00:42:23]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:42:23]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:42:23]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:42:23]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:42:23]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:42:23]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:42:23]: Could not unload undefined prefab 0x38050c (ruins_rubble_vase)
[00:42:23]: Could not unload undefined prefab 0x2cf27a76 (bishop_charge)
[00:42:23]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:42:23]: Could not unload undefined prefab 0x162c669d (marble)
[00:42:23]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:42:23]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:42:23]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:42:23]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:42:23]: Could not unload undefined prefab 0x162c669d (marble)
[00:42:23]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:42:23]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:42:23]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:42:23]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:42:23]: Could not unload undefined prefab 0x162c669d (marble)
[00:42:23]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:42:23]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:42:23]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:42:23]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:42:23]: Could not unload undefined prefab 0x162c669d (marble)
[00:42:23]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:42:23]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:42:23]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:42:23]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:42:23]: Could not unload undefined prefab 0x20cd7317 (nightmarelight)
[00:42:23]: Could not unload undefined prefab 0x111c8fe5 (fissure)
[00:42:23]: Could not unload undefined prefab 0x184178b (meat)
[00:42:23]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:42:23]: Could not unload undefined prefab 0x2824710f (spider_web_spit_creep)
[00:42:23]: Could not unload undefined prefab 0x23085961 (caverain)
[00:42:23]: Could not unload undefined prefab 0x21823186 (dropperweb)
[00:42:23]: Could not unload undefined prefab 0x15261eec (hutch)
[00:42:23]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:42:23]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:42:23]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:42:23]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:42:23]: Could not unload undefined prefab 0xb1e7b61 (dragonfruit)
[00:42:23]: Could not unload undefined prefab 0x2b3fb01c (watermelon)
[00:42:23]: Could not unload undefined prefab 0x13897ec9 (berries_juicy)
[00:42:23]: Could not unload undefined prefab 0x1047b105 (evergreen)
[00:42:23]: Could not unload undefined prefab 0x9caab61 (evergreen_normal)
[00:42:23]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:42:23]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:42:23]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:42:23]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:42:23]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:42:23]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:42:23]: Could not unload undefined prefab 0xa5cdb4c (evergreen_sparse_normal)
[00:42:23]: Could not unload undefined prefab 0x6d765b7 (evergreen_sparse_short)
[00:42:23]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:42:23]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:42:23]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:42:23]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:42:23]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:42:23]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:42:23]: Could not unload undefined prefab 0x204c651d (evergreen_stump)
[00:42:23]: Could not unload undefined prefab 0xb0a79a1 (twiggy_nut)
[00:42:23]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:42:23]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:42:23]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:42:23]: Could not unload undefined prefab 0xb0a79a1 (twiggy_nut)
[00:42:23]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:42:23]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:42:23]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:42:23]: Could not unload undefined prefab 0xb0a79a1 (twiggy_nut)
[00:42:23]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:42:23]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:42:23]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:42:23]: Could not unload undefined prefab 0x28861538 (sapling)
[00:42:23]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:42:23]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:42:23]: Could not unload undefined prefab 0x217a7c34 (berrybush2)
[00:42:23]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:42:23]: Could not unload undefined prefab 0x87f86db (rock_moon)
[00:42:23]: Could not unload undefined prefab 0x107c65e6 (tallbird)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x1baa7bae (firehound)
[00:42:23]: Could not unload undefined prefab 0x2747c45b (krampus)
[00:42:23]: Could not unload undefined prefab 0x19c004b2 (pighouse)
[00:42:23]: Could not unload undefined prefab 0x2571d493 (butterfly)
[00:42:23]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:42:23]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:42:23]: Could not unload undefined prefab 0x24b8f3b (fireflies)
[00:42:23]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:42:23]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:42:23]: Could not unload undefined prefab 0x2f85395e (turf_savanna)
[00:42:23]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:42:23]: Could not unload undefined prefab 0x31b9f5e7 (turf_forest)
[00:42:23]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:42:23]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:42:23]: Could not unload undefined prefab 0x10270c70 (turf_fungus)
[00:42:23]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:42:23]: Could not unload undefined prefab 0x59d5dd3 (turf_underrock)
[00:42:23]: Could not unload undefined prefab 0x2fbde1f2 (turf_mud)
[00:42:23]: Could not unload undefined prefab 0x1bd1b038 (insanityrock)
[00:42:23]: Could not unload undefined prefab 0x1c6b2805 (houndmound)
[00:42:23]: Could not unload undefined prefab 0x184178b (meat)
[00:42:23]: Could not unload undefined prefab 0xe2bfa46 (tophat)
[00:42:23]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:42:23]: Could not unload undefined prefab 0x2368cc34 (green_mushroom)
[00:42:23]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:42:23]: Could not unload undefined prefab 0x67ff1ed (mermhouse)
[00:42:23]: Could not unload undefined prefab 0x2ffe1998 (flower_evil)
[00:42:23]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:42:23]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:42:23]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:42:23]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:42:23]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:42:23]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:42:23]: Could not unload undefined prefab 0x2cf27a76 (bishop_charge)
[00:42:23]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:42:23]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:42:23]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:42:23]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:42:23]: Could not unload undefined prefab 0x29d8efdb (red_leaves_chop)
[00:42:23]: Could not unload undefined prefab 0x2d1c40c (deciduous_root)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x235a9a90 (birchnutdrake)
[00:42:23]: Could not unload undefined prefab 0x29d8efdb (red_leaves_chop)
[00:42:23]: Could not unload undefined prefab 0x2d1c40c (deciduous_root)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x235a9a90 (birchnutdrake)
[00:42:23]: Could not unload undefined prefab 0x29d8efdb (red_leaves_chop)
[00:42:23]: Could not unload undefined prefab 0x2d1c40c (deciduous_root)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x235a9a90 (birchnutdrake)
[00:42:23]: Could not unload undefined prefab 0x29d8efdb (red_leaves_chop)
[00:42:23]: Could not unload undefined prefab 0x2d1c40c (deciduous_root)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x235a9a90 (birchnutdrake)
[00:42:23]: Could not unload undefined prefab 0x29d8efdb (red_leaves_chop)
[00:42:23]: Could not unload undefined prefab 0x2d1c40c (deciduous_root)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x235a9a90 (birchnutdrake)
[00:42:23]: Could not unload undefined prefab 0x32d080ea (drumstick)
[00:42:23]: Could not unload undefined prefab 0x18c46cd (glommerfuel)
[00:42:23]: Could not unload undefined prefab 0x11c7d51 (glommerwings)
[00:42:23]: Could not unload undefined prefab 0x162c669d (marble)
[00:42:23]: Could not unload undefined prefab 0x32fc24ed (cactus_flower)
[00:42:23]: Could not unload undefined prefab 0x2bcce899 (writeable_classified)
[00:42:23]: Could not unload undefined prefab 0x3306d1dc (thunder_far)
[00:42:23]: Could not unload undefined prefab 0x1796bd2a (lightning)
[00:42:23]: Could not unload undefined prefab 0x162c669d (marble)
[00:42:23]: Could not unload undefined prefab 0x184178b (meat)
[00:42:23]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:42:23]: Could not unload undefined prefab 0x184178b (meat)
[00:42:23]: Could not unload undefined prefab 0x184178b (meat)
[00:42:23]: Could not unload undefined prefab 0x1ddfa303 (horn)
[00:42:23]: Could not unload undefined prefab 0x22a4f6ff (bird_egg)
[00:42:23]: Could not unload undefined prefab 0x32d080ea (drumstick)
[00:42:23]: Could not unload undefined prefab 0x22a4f6ff (bird_egg)
[00:42:23]: Could not unload undefined prefab 0x184178b (meat)
[00:42:23]: Could not unload undefined prefab 0xb03e93a (trunk_summer)
[00:42:23]: Could not unload undefined prefab 0x184178b (meat)
[00:42:23]: Could not unload undefined prefab 0xb03e93a (trunk_summer)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x30a708a2 (bee)
[00:42:23]: Could not unload undefined prefab 0x184178b (meat)
[00:42:23]: Could not unload undefined prefab 0x2e264dbc (blowdart_pipe)
[00:42:23]: Could not unload undefined prefab 0x67bb53b (mole)
[00:42:23]: Could not unload undefined prefab 0x27bb85c8 (cave_entrance)
[00:42:23]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:42:23]: Could not unload undefined prefab 0x3de9fbd (teleportato_box)
[00:42:23]: Could not unload undefined prefab 0x45ac955 (teleportato_potato)
[00:42:23]: Could not unload undefined prefab 0x1f5630bd (dug_marsh_bush)
[00:42:23]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:42:23]: Could not unload undefined prefab 0x38e59fd (mist)
[00:42:23]: Could not unload undefined prefab 0x1d298b03 (snow)
[00:42:23]: Could not unload undefined prefab 0x162c669d (marble)
[00:42:23]: Could not unload undefined prefab 0x162c669d (marble)
[00:42:23]: Could not unload undefined prefab 0x2c507dbb (statueharp)
[00:42:23]: Could not unload undefined prefab 0x1e508f2e (statuemaxwell)
[00:42:23]: Could not unload undefined prefab 0x9d92cce (purpleamulet)
[00:42:23]: Could not unload undefined prefab 0x1765df93 (monkey)
[00:42:23]: Could not unload undefined prefab 0x67bb53b (mole)
[00:42:23]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:42:23]: Could not unload undefined prefab 0x30a708a2 (bee)
[00:42:23]: Could not unload undefined prefab 0xf174236 (feather_robin_winter)
[00:42:23]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:42:23]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:42:23]: Could not unload undefined prefab 0xc01796b (corn_seeds)
[00:42:23]: Could not unload undefined prefab 0x2d99608b (pumpkin_seeds)
[00:42:23]: Could not unload undefined prefab 0x2571d493 (butterfly)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x1eee0485 (transistor)
[00:42:23]: Could not unload undefined prefab 0x1c86b389 (froglegs)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:42:23]: Could not unload undefined prefab 0x6dddac (shadowmeteor)
[00:42:23]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:42:23]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:42:23]: Could not unload undefined prefab 0x1baa7bae (firehound)
[00:42:23]: Could not unload undefined prefab 0x1e17a690 (spat)
[00:42:23]: Could not unload undefined prefab 0x30bdcde6 (lavae_move_fx)
[00:42:23]: Could not unload undefined prefab 0xdcd8f65 (crawlinghorror)
[00:42:23]: Could not unload undefined prefab 0x25fd132f (shadowhand)
[00:42:23]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:42:23]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:42:23]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:42:23]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:42:23]: Could not unload undefined prefab 0x107f3fc2 (seeds)
[00:42:23]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:42:23]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:42:23]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:42:23]: Could not unload undefined prefab 0x107f3fc2 (seeds)
[00:42:23]: Could not unload undefined prefab 0xf174236 (feather_robin_winter)
[00:42:23]: Could not unload undefined prefab 0x67bb53b (mole)
[00:42:23]: Could not unload undefined prefab 0x24b8f3b (fireflies)
[00:42:23]: Could not unload undefined prefab 0x1ab03cb5 (silk)
[00:42:23]: Could not unload undefined prefab 0x1c86b389 (froglegs)
[00:42:23]: Could not unload undefined prefab 0x86a562b (frogsplash)
[00:42:23]: Could not unload undefined prefab 0x30a708a2 (bee)
[00:42:23]: Could not unload undefined prefab 0xcc84da (moose_nest_fx_idle)
[00:42:23]: Could not unload undefined prefab 0x68af69d (goose_feather)
[00:42:23]: Could not unload undefined prefab 0x32d080ea (drumstick)
[00:42:23]: Could not unload undefined prefab 0x68af69d (goose_feather)
[00:42:23]: Could not unload undefined prefab 0x32d080ea (drumstick)
[00:42:23]: Could not unload undefined prefab 0x5bf8db2 (furtuft)
[00:42:23]: Could not unload undefined prefab 0xc2dcfd4 (firesplash_fx)
[00:42:23]: Could not unload undefined prefab 0x217767f3 (attackfire_fx)
[00:42:23]: Could not unload undefined prefab 0x19f41fd5 (dragon_scales)
[00:42:23]: Could not unload undefined prefab 0x30bdcde6 (lavae_move_fx)
[00:42:23]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:42:23]: Could not unload undefined prefab 0x184178b (meat)
[00:42:23]: Could not unload undefined prefab 0xbcbaa3e (redgem)
[00:42:23]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:42:23]: Could not unload undefined prefab 0x1941243b (yellowgem)
[00:42:23]: Could not unload undefined prefab 0x1cba00e4 (chester_eyebone)
[00:42:23]: Could not unload undefined prefab 0xc2804d5 (sps_berrybush)
[00:42:23]: Could not unload undefined prefab 0x13897ec9 (berries_juicy)
[00:42:23]: Could not unload undefined prefab 0x269656ca (dug_berrybush_juicy)
[00:42:23]: Could not unload undefined prefab 0x32d080ea (drumstick)
[00:42:23]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:42:23]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:42:23]: Could not unload undefined prefab 0x266c2f16 (houndwarning_lvl1)
[00:42:23]: Could not unload undefined prefab 0x266c2f17 (houndwarning_lvl2)
[00:42:23]: Could not unload undefined prefab 0x266c2f18 (houndwarning_lvl3)
[00:42:23]: Could not unload undefined prefab 0x266c2f19 (houndwarning_lvl4)
[00:42:23]: Could not unload undefined prefab 0x28b9400d (deerclopswarning_lvl1)
[00:42:23]: Could not unload undefined prefab 0x28b9400e (deerclopswarning_lvl2)
[00:42:23]: Could not unload undefined prefab 0x28b9400f (deerclopswarning_lvl3)
[00:42:23]: Could not unload undefined prefab 0x28b94010 (deerclopswarning_lvl4)
[00:42:23]: Could not unload undefined prefab 0x1399a452 (beargerwarning_lvl1)
[00:42:23]: Could not unload undefined prefab 0x1399a453 (beargerwarning_lvl2)
[00:42:23]: Could not unload undefined prefab 0x1399a454 (beargerwarning_lvl3)
[00:42:23]: Could not unload undefined prefab 0x1399a455 (beargerwarning_lvl4)
[00:42:23]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0xc01796b (corn_seeds)
[00:42:23]: Could not unload undefined prefab 0x2cabadf1 (staffcastfx)
[00:42:23]: Could not unload undefined prefab 0x36458456 (stafflight)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x2cabadf1 (staffcastfx)
[00:42:23]: Could not unload undefined prefab 0x36458456 (stafflight)
[00:42:23]: Could not unload undefined prefab 0x39ecf974 (cutgrass)
[00:42:23]: Could not unload undefined prefab 0x94e85ed (campfirefire)
[00:42:23]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:42:23]: Could not unload undefined prefab 0x20331a8d (firepit_fanged)
[00:42:23]: Could not unload undefined prefab 0x1d79c25a (firepit_hole)
[00:42:23]: Could not unload undefined prefab 0x71127e3 (carrot_cooked)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x2cabadf1 (staffcastfx)
[00:42:23]: Could not unload undefined prefab 0x36458456 (stafflight)
[00:42:23]: Could not unload undefined prefab 0x39ecf974 (cutgrass)
[00:42:23]: Could not unload undefined prefab 0x359da624 (log)
[00:42:23]: Could not unload undefined prefab 0x29d8efdb (red_leaves_chop)
[00:42:23]: Could not unload undefined prefab 0x39590c78 (orange_leaves_chop)
[00:42:23]: Could not unload undefined prefab 0x2d1c40c (deciduous_root)
[00:42:23]: Could not unload undefined prefab 0x41ba89b5 (nightmarefuel)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x235a9a90 (birchnutdrake)
[00:42:23]: Could not unload undefined prefab 0x20c152ce (collapse_big)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x2d99608b (pumpkin_seeds)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x184178b (meat)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x4790f393 (deciduoustree)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x1549fe9 (explode_small)
[00:42:23]: Could not unload undefined prefab 0x4254b676 (splash_snow_fx)
[00:42:23]: Could not unload undefined prefab 0x184178b (meat)
[00:42:23]: Could not unload undefined prefab 0xe2bfa46 (tophat)
[00:42:23]: Could not unload undefined prefab 0x3abfcfab (pigskin)
[00:42:23]: Could not unload undefined prefab 0x344c1a3f (shadowminer)
[00:42:23]: Could not unload undefined prefab 0x2cabadf1 (staffcastfx)
[00:42:23]: Could not unload undefined prefab 0x36458456 (stafflight)
[00:42:23]: Could not unload undefined prefab 0x39ecf974 (cutgrass)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x18fee34b (brokenwall_ruins)
[00:42:23]: Could not unload undefined prefab 0x359da624 (log)
[00:42:23]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:42:23]: Could not unload undefined prefab 0x706870b6 (green_cap)
[00:42:23]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:42:23]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:42:23]: Could not unload undefined prefab 0x1a35332f (spore_medium)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:42:23]: Could not unload undefined prefab 0x12434e82 (gemsocket)
[00:42:23]: Could not unload undefined prefab 0x30a708a2 (bee)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x24b8f3b (fireflies)
[00:42:23]: Could not unload undefined prefab 0x109a4b4a (mandrakesoup)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x8737b1f4 (hotchili)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x82c1abbd (monsterlasagna)
[00:42:23]: Could not unload undefined prefab 0x113860b0 (powcake)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x8be4c476 (frogglebunwich)
[00:42:23]: Could not unload undefined prefab 0x3e819cf (wetgoop)
[00:42:23]: Could not unload undefined prefab 0x4ad6ef2c (pumpkincookie)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x417d9269 (meatballs)
[00:42:23]: Could not unload undefined prefab 0x1645ce02 (perogies)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x52c59920 (turkeydinner)
[00:42:23]: Could not unload undefined prefab 0x22b6bfb9 (stuffedeggplant)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x3920172a (unagi)
[00:42:23]: Could not unload undefined prefab 0x5cdc5516 (trailmix)
[00:42:23]: Could not unload undefined prefab 0x8405847b (fishsticks)
[00:42:23]: Could not unload undefined prefab 0x2b3f1f65 (jammypreserves)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x7c35f54 (kabobs)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x51e97b1a (ratatouille)
[00:42:23]: Could not unload undefined prefab 0x7adf9a50 (cookpot_survival)
[00:42:23]: Could not unload undefined prefab 0xf1e18b0 (coldfirefire)
[00:42:23]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0xf1e18b0 (coldfirefire)
[00:42:23]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:42:23]: Could not unload undefined prefab 0x20c152ce (collapse_big)
[00:42:23]: Could not unload undefined prefab 0x3fe15911 (durian_cooked)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x816018fb (wall_moonrock)
[00:42:23]: Could not unload undefined prefab 0x59c04273 (wall_moonrock_item_placer)
[00:42:23]: Could not unload undefined prefab 0x8362ab32 (tentacle)
[00:42:23]: Could not unload undefined prefab 0x91d186fb (shadow_despawn)
[00:42:23]: Could not unload undefined prefab 0x41ba89b5 (nightmarefuel)
[00:42:23]: Could not unload undefined prefab 0x8119781a (cookedmandrake)
[00:42:23]: Could not unload undefined prefab 0x8c6be253 (mandrake)
[00:42:23]: Could not unload undefined prefab 0x83232836 (wall_ruins)
[00:42:23]: Could not unload undefined prefab 0x8f9500ae (wall_ruins_item_placer)
[00:42:23]: Could not unload undefined prefab 0x8c6be253 (mandrake)
[00:42:23]: Could not unload undefined prefab 0xa694a25e (mandrake_planted)
[00:42:23]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:42:23]: Could not unload undefined prefab 0x1bdc0692 (shadowduelist)
[00:42:23]: Could not unload undefined prefab 0xf1761cf (bernie_inactive)
[00:42:23]: Could not unload undefined prefab 0xb50c4e4c (pinecone_sapling)
[00:42:23]: Could not unload undefined prefab 0x112002ba (twiggy_nut_sapling)
[00:42:23]: Could not unload undefined prefab 0x320ed27b (plant_normal)
[00:42:23]: Could not unload undefined prefab 0xaa352fa8 (farmrocktall)
[00:42:23]: Could not unload undefined prefab 0x24356d14 (farmrockflat)
[00:42:23]: Could not unload undefined prefab 0x5a2850b7 (stickleft)
[00:42:23]: Could not unload undefined prefab 0x476da331 (burntstickright)
[00:42:23]: Could not unload undefined prefab 0x6fce684 (signleft)
[00:42:23]: Could not unload undefined prefab 0x6a319031 (fencepost)
[00:42:23]: Could not unload undefined prefab 0x6fef50cb (fencepostright)
[00:42:23]: Could not unload undefined prefab 0xb3facc (burntfencepost)
[00:42:23]: Could not unload undefined prefab 0x891047f0 (burntfencepostright)
[00:42:23]: Could not unload undefined prefab 0x359da624 (log)
[00:42:23]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:42:23]: Could not unload undefined prefab 0x706870b6 (green_cap)
[00:42:23]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:42:23]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:42:23]: Could not unload undefined prefab 0xed18eed (spore_small)
[00:42:23]: Could not unload undefined prefab 0x8539b55b (mushtree_small_burntfx)
[00:42:23]: Could not unload undefined prefab 0x994e32df (mushtree_small_bloom_burntfx)
[00:42:23]: Could not unload undefined prefab 0x65eb274a (petals_evil)
[00:42:23]: Could not unload undefined prefab 0x359da624 (log)
[00:42:23]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[00:42:23]: Could not unload undefined prefab 0x706870b6 (green_cap)
[00:42:23]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[00:42:23]: Could not unload undefined prefab 0x3036fc96 (ash)
[00:42:23]: Could not unload undefined prefab 0x5286daa7 (spore_tall)
[00:42:23]: Could not unload undefined prefab 0x9db421e9 (mushtree_tall_burntfx)
[00:42:23]: Could not unload undefined prefab 0x4336ea6d (mushtree_tall_bloom_burntfx)
[00:42:23]: Could not unload undefined prefab 0xbc5dcbd5 (poopcloud)
[00:42:23]: Could not unload undefined prefab 0x774f8c02 (snowball)
[00:42:23]: Could not unload undefined prefab 0x4254b676 (splash_snow_fx)
[00:42:23]: Could not unload undefined prefab 0x47329be (firesuppressor_glow)
[00:42:23]: Could not unload undefined prefab 0x184178b (meat)
[00:42:23]: Could not unload undefined prefab 0x359da624 (log)
[00:42:23]: Could not unload undefined prefab 0x1078732c (character_fire)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x9be18af2 (twigs)
[00:42:23]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:42:23]: Could not unload undefined prefab 0x184178b (meat)
[00:42:23]: Could not unload undefined prefab 0x359da624 (log)
[00:42:23]: Could not unload undefined prefab 0x1078732c (character_fire)
[00:42:23]: Could not unload undefined prefab 0x30a708a2 (bee)
[00:42:23]: Could not unload undefined prefab 0x8d0790fc (honeycomb)
[00:42:23]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:42:23]: Could not unload undefined prefab 0x22a4f6ff (bird_egg)
[00:42:23]: Could not unload undefined prefab 0x36b4bd17 (crow)
[00:42:23]: Could not unload undefined prefab 0x9c61daea (robin)
[00:42:23]: Could not unload undefined prefab 0xb8dc9dfa (robin_winter)
[00:42:23]: Could not unload undefined prefab 0xc7e99c14 (guano)
[00:42:23]: Could not unload undefined prefab 0x6d8df54b (wall_hay)
[00:42:23]: Could not unload undefined prefab 0x42632ec3 (wall_hay_item_placer)
[00:42:23]: Could not unload undefined prefab 0x1af6b572 (shadowtentacle)
[00:42:23]: Could not unload undefined prefab 0x94c7685d (ice_projectile)
[00:42:23]: Could not unload undefined prefab 0xc04fd6d2 (fire_projectile)
[00:42:23]: Could not unload undefined prefab 0x2cabadf1 (staffcastfx)
[00:42:23]: Could not unload undefined prefab 0x36458456 (stafflight)
[00:42:23]: Could not unload undefined prefab 0x39ecf974 (cutgrass)
[00:42:23]: Could not unload undefined prefab 0xb2e44c01 (forcefieldfx)
[00:42:23]: Could not unload undefined prefab 0x8362ab32 (tentacle)
[00:42:23]: Could not unload undefined prefab 0xb430ba46 (splash_ocean)
[00:42:23]: Could not unload undefined prefab 0xaeb1c368 (book_fx)
[00:42:23]: Could not unload undefined prefab 0xc4f29869 (petals)
[00:42:23]: Could not unload undefined prefab 0x2ffe1998 (flower_evil)
[00:42:23]: Could not unload undefined prefab 0x491192bf (lightning_rod_fx)
[00:42:23]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:42:23]: Could not unload undefined prefab 0x94c7685d (ice_projectile)
[00:42:23]: Could not unload undefined prefab 0xc04fd6d2 (fire_projectile)
[00:42:23]: Could not unload undefined prefab 0x2cabadf1 (staffcastfx)
[00:42:23]: Could not unload undefined prefab 0x36458456 (stafflight)
[00:42:23]: Could not unload undefined prefab 0x39ecf974 (cutgrass)
[00:42:23]: Could not unload undefined prefab 0xe2f01fef (balloon)
[00:42:23]: Could not unload undefined prefab 0xde56c6a5 (mosquitosack)
[00:42:23]: Could not unload undefined prefab 0x35e3acb2 (berries_cooked)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:42:23]: Could not unload undefined prefab 0x9ce1eaee (rocks)
[00:42:23]: Could not unload undefined prefab 0x7e6d93ac (nitre)
[00:42:23]: Could not unload undefined prefab 0xe5306269 (flint)
[00:42:23]: Could not unload undefined prefab 0xd3c23856 (goldnugget)
[00:42:23]: Could not unload undefined prefab 0xc63a5a5c (moonrocknugget)
[00:42:23]: Could not unload undefined prefab 0xcff76eec (rock_break_fx)
[00:42:23]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:42:23]: Could not unload undefined prefab 0x13c2a611 (gridplacer)
[00:42:23]: Could not unload undefined prefab 0x359da624 (log)
[00:42:23]: Could not unload undefined prefab 0xb7e66933 (pinecone)
[00:42:23]: Could not unload undefined prefab 0xec8853ad (charcoal)
[00:42:23]: Could not unload undefined prefab 0xd30548b6 (leif)
[00:42:23]: Could not unload undefined prefab 0xcf3ff3e9 (leif_sparse)
[00:42:23]: Could not unload undefined prefab 0xb9d7a9d0 (pine_needles_chop)
[00:42:23]: Could not unload undefined prefab 0x78d69cdc (rock_petrified_tree_short)
[00:42:23]: Could not unload undefined prefab 0x4f122f8c (rock_petrified_tree_med)
[00:42:23]: Could not unload undefined prefab 0xe8c52d0d (rock_petrified_tree_tall)
[00:42:23]: Could not unload undefined prefab 0x50155047 (rock_petrified_tree_old)
[00:42:23]: Could not unload undefined prefab 0xaec874c8 (disease_puff)
[00:42:23]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:42:23]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:42:23]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:42:23]: Could not unload undefined prefab 0x674707c2 (acorn_sapling)
[00:42:23]: Could not unload undefined prefab 0x7e58aebd (acorn_cooked)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x757f3023 (pomegranate_cooked)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x830c1c66 (pomegranate_seeds)
[00:42:23]: Could not unload undefined prefab 0xecb2fd20 (eggplant_cooked)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0xd5a44029 (eggplant_seeds)
[00:42:23]: Could not unload undefined prefab 0x92132840 (poop)
[00:42:23]: Could not unload undefined prefab 0xbc74c3cb (bedroll_furry_quilt_white_ivory)
[00:42:23]: Could not unload undefined prefab 0x36b4bd17 (crow)
[00:42:23]: Could not unload undefined prefab 0x9c61daea (robin)
[00:42:23]: Could not unload undefined prefab 0xb8dc9dfa (robin_winter)
[00:42:23]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[00:42:23]: Could not unload undefined prefab 0x8efaa286 (impact)
[00:42:23]: Could not unload undefined prefab 0xd0ee1bd5 (collapse_small)
[00:42:23]: Could not unload undefined prefab 0x359da624 (log)
[00:42:23]: Could not unload undefined prefab 0x9be18af2 (twigs)
[00:42:23]: Could not unload undefined prefab 0xb0a79a1 (twiggy_nut)
[00:42:23]: Could not unload undefined prefab 0xec8853ad (charcoal)
[00:42:23]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[00:42:23]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[00:42:23]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[00:42:23]: Could not unload undefined prefab 0xca3a1095 (diseaseflies)
[00:42:24]: Mod: workshop-365119238 (SmartCrockPot)    Registering prefabs    
[00:42:24]: Mod: workshop-365119238 (SmartCrockPot)      Registering default mod prefab    
[00:42:24]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Registering prefabs    
[00:42:24]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Registering prefab file: prefabs/mapiconhelper    
[00:42:24]: Mod: workshop-672584952 ([Updated] Complete Your Map)        mapiconhelper    
[00:42:24]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Registering default mod prefab    
[00:42:24]: Mod: workshop-362906105 (Sticky Recipe)    Registering prefabs    
[00:42:24]: Mod: workshop-362906105 (Sticky Recipe)      Registering default mod prefab    
[00:42:24]: Mod: workshop-344071294 (Quick Emotes)    Registering prefabs    
[00:42:24]: Mod: workshop-344071294 (Quick Emotes)      Registering default mod prefab    
[00:42:24]: Mod: workshop-539957958 (Persistent Compass HUD)    Registering prefabs    
[00:42:24]: Mod: workshop-539957958 (Persistent Compass HUD)      Registering default mod prefab    
[00:42:24]: Mod: workshop-367593872 (No More Lag)    Registering prefabs    
[00:42:24]: Mod: workshop-367593872 (No More Lag)      Registering default mod prefab    
[00:42:24]: Mod: workshop-345692228 (Minimap HUD)    Registering prefabs    
[00:42:24]: Mod: workshop-345692228 (Minimap HUD)      Registering default mod prefab    
[00:42:24]: Mod: workshop-661284815 (Improved Force Attack)    Registering prefabs    
[00:42:24]: Mod: workshop-661284815 (Improved Force Attack)      Registering default mod prefab    
[00:42:24]: Mod: workshop-376333686 (Combined Status)    Registering prefabs    
[00:42:24]: Mod: workshop-376333686 (Combined Status)      Registering default mod prefab    
[00:42:24]: Mod: workshop-394612159 (Auto ReTrap)    Registering prefabs    
[00:42:24]: Mod: workshop-394612159 (Auto ReTrap)      Registering default mod prefab    
[00:42:24]: Mod: workshop-609051112 (Action Queue(DST))    Registering prefabs    
[00:42:24]: Mod: workshop-609051112 (Action Queue(DST))      Registering default mod prefab    
[00:42:24]: Mod: workshop-694531911 ( [DST]Aerial view)    Registering prefabs    
[00:42:24]: Mod: workshop-694531911 ( [DST]Aerial view)      Registering default mod prefab    
[00:42:24]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Registering prefabs    
[00:42:24]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Registering prefab file: prefabs/range    
[00:42:24]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])        range_indicator_client    
[00:42:24]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Registering default mod prefab    
[00:42:24]: Mod: workshop-351325790 (Geometric Placement)    Registering prefabs    
[00:42:24]: Mod: workshop-351325790 (Geometric Placement)      Registering prefab file: prefabs/buildgridplacer    
[00:42:24]: Mod: workshop-351325790 (Geometric Placement)        buildgridplacer    
[00:42:24]: Mod: workshop-351325790 (Geometric Placement)      Registering default mod prefab    
[00:42:24]:     LOAD BE    
[00:42:25]:     LOAD BE: done    
[00:42:25]: Loading world: client_temp/server_save    
[00:42:25]: Save file is at version 3    
[00:42:25]: MiniMapComponent::AddAtlas( minimap/minimap_data.xml )
[00:42:25]: MiniMapComponent::AddAtlas( ../mods/workshop-672584952/minimap/moreminimapicons.xml )
[00:42:26]: Loading Nav Grid    
[00:42:26]: Reconstructing topology    
[00:42:26]:     ...Sorting points    
[00:42:26]:     ...Sorting edges    
[00:42:26]:     ...Connecting nodes    
[00:42:26]:     ...Validating connections    
[00:42:26]:     ...Housekeeping    
[00:42:26]:     ...Done!    
[00:42:26]: ModIndex: Load sequence finished successfully.    
[00:42:26]: Reset() returning
[00:42:27]: Attempting to send resume request
[00:42:27]: ReceiveResumeNotification
[00:42:27]: Loading minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[00:42:27]: Deserializing cached icon data: 1298
[00:42:27]: Deserializing tile data (425 x 425)
[00:43:00]: Serializing minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[00:43:00]: Serializing user: session/90E621F09490DBD1/KU_bPVGW5kg_/0000000001
[00:43:27]: Vote started: "kick" (KU_hc3pjCE2) Martin    
[00:43:58]: Vote ended    
[00:46:18]: KU_bPVGW5kg    running text command:    dance    false    
[00:51:01]: Serializing minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[00:51:01]: Serializing user: session/90E621F09490DBD1/KU_bPVGW5kg_/0000000001
[00:53:21]: Stale Component Reference: GUID 108664, scripts/widgets/text.lua:68
[00:53:24]: Stale Component Reference: GUID 108605, scripts/widgets/text.lua:68
[00:56:45]: Stale Component Reference: GUID 112395, scripts/widgets/text.lua:68
[00:59:01]: Serializing minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[00:59:01]: Serializing user: session/90E621F09490DBD1/KU_bPVGW5kg_/0000000001
[00:59:24]: Vote started: "kick" (KU_EGD-HM2u) melonban    
[00:59:54]: Vote ended    
[01:02:20]: KU_bPVGW5kg    running command:    kick    nil    
[01:02:20]:     K:     user     V:     KU_jeY1Qkek    
[01:02:21]: Vote started: "kick" (KU_jeY1Qkek) FantasyFreak_UK    
[01:02:51]: Vote ended    
[01:04:48]: [200] Account Communication Success (6)
[01:04:48]: Received (KU_bPVGW5kg) from TokenPurpose
[01:07:01]: Serializing minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[01:07:01]: Serializing user: session/90E621F09490DBD1/KU_bPVGW5kg_/0000000001
[01:09:27]: Stale Component Reference: GUID 138809, scripts/widgets/text.lua:68
[01:12:45]: Stale Component Reference: GUID 141825, scripts/widgets/text.lua:68
[01:15:01]: Serializing minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[01:15:01]: Serializing user: session/90E621F09490DBD1/KU_bPVGW5kg_/0000000001
[01:23:01]: Serializing minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[01:23:01]: Serializing user: session/90E621F09490DBD1/KU_bPVGW5kg_/0000000001
[01:31:02]: Serializing minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[01:31:02]: Serializing user: session/90E621F09490DBD1/KU_bPVGW5kg_/0000000001
[01:34:48]: [200] Account Communication Success (6)
[01:34:48]: Received (KU_bPVGW5kg) from TokenPurpose
[01:39:02]: Serializing minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[01:39:02]: Serializing user: session/90E621F09490DBD1/KU_bPVGW5kg_/0000000001
[01:47:02]: Serializing minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[01:47:02]: Serializing user: session/90E621F09490DBD1/KU_bPVGW5kg_/0000000001
[01:55:02]: Serializing minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[01:55:02]: Serializing user: session/90E621F09490DBD1/KU_bPVGW5kg_/0000000001
[01:55:26]: Stale Component Reference: GUID 192792, scripts/widgets/text.lua:68
[02:03:02]: Serializing minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[02:03:02]: Serializing user: session/90E621F09490DBD1/KU_bPVGW5kg_/0000000001
[02:04:48]: [200] Account Communication Success (6)
[02:04:48]: Received (KU_bPVGW5kg) from TokenPurpose
[02:11:03]: Serializing minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[02:11:03]: Serializing user: session/90E621F09490DBD1/KU_bPVGW5kg_/0000000001
[02:19:03]: Serializing minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[02:19:03]: Serializing user: session/90E621F09490DBD1/KU_bPVGW5kg_/0000000001
[02:27:03]: Serializing minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[02:27:03]: Serializing user: session/90E621F09490DBD1/KU_bPVGW5kg_/0000000001
[02:32:13]: Stale Component Reference: GUID 269877, scripts/widgets/text.lua:68
[02:34:48]: [200] Account Communication Success (6)
[02:34:48]: Received (KU_bPVGW5kg) from TokenPurpose
[02:35:03]: Serializing minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[02:35:03]: Serializing user: session/90E621F09490DBD1/KU_bPVGW5kg_/0000000001
[02:35:07]: DoRestart:    true    
[02:35:08]: Serializing minimap: session/90E621F09490DBD1/KU_bPVGW5kg_/minimap
[02:35:08]: Serializing user: session/90E621F09490DBD1/KU_bPVGW5kg_/0000000001
[02:35:08]: [Steam] Game Connection terminated (1098275158|11000)
[02:35:08]: [Shard] Stopping shard mode
[02:35:08]: SteamWorkshop::CancelDownloads clearing all unfinished downloads
[02:35:08]: unloading prefabs for mod MOD_workshop-365119238    
[02:35:08]: unloading prefabs for mod MOD_workshop-672584952    
[02:35:08]: unloading prefabs for mod MOD_workshop-362906105    
[02:35:08]: unloading prefabs for mod MOD_workshop-344071294    
[02:35:08]: unloading prefabs for mod MOD_workshop-539957958    
[02:35:08]: unloading prefabs for mod MOD_workshop-367593872    
[02:35:08]: unloading prefabs for mod MOD_workshop-345692228    
[02:35:08]: unloading prefabs for mod MOD_workshop-661284815    
[02:35:08]: unloading prefabs for mod MOD_workshop-376333686    
[02:35:08]: unloading prefabs for mod MOD_workshop-394612159    
[02:35:08]: unloading prefabs for mod MOD_workshop-609051112    
[02:35:08]: unloading prefabs for mod MOD_workshop-694531911    
[02:35:08]: unloading prefabs for mod MOD_workshop-522023088    
[02:35:08]: unloading prefabs for mod MOD_workshop-351325790    
[02:35:08]: Collecting garbage...
[02:35:08]: lua_gc took 0.01 seconds
[02:35:08]: ~ShardLuaProxy()
[02:35:08]: ~ItemServerLuaProxy()
[02:35:08]: ~InventoryLuaProxy()
[02:35:08]: ~NetworkLuaProxy()
[02:35:08]: ~SimLuaProxy()
[02:35:08]: SteamWorkshop::CancelDownloads clearing all unfinished downloads
[02:35:08]: lua_close took 0.02 seconds
[02:35:08]: ReleaseAll
[02:35:08]: ReleaseAll Finished
[02:35:08]: cGame::StartPlaying
[02:35:08]: LOADING LUA
[02:35:08]: DoLuaFile scripts/main.lua
[02:35:08]: DoLuaFile loading buffer scripts/main.lua
[02:35:08]: running main.lua
    
[02:35:08]: loaded modindex    
[02:35:08]: ModIndex: Beginning normal load sequence.
    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-344071294    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-345692228    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-351325790    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-362906105    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-365119238    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-367593872    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-394612159    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-522023088    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-539957958    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-609051112    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-661284815    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-672584952    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-694531911    
[02:35:08]: Could not load mod_config_data/modconfiguration_workshop-344071294    
[02:35:08]: Loading mod: workshop-344071294 (Quick Emotes) Version:1.7    
[02:35:08]: loaded mod_config_data/modconfiguration_workshop-345692228    
[02:35:08]: Loading mod: workshop-345692228 (Minimap HUD) Version:1.0.7    
[02:35:08]: loaded mod_config_data/modconfiguration_workshop-351325790    
[02:35:08]: Loading mod: workshop-351325790 (Geometric Placement) Version:2.1.1    
[02:35:08]: Could not load mod_config_data/modconfiguration_workshop-362906105    
[02:35:08]: Loading mod: workshop-362906105 (Sticky Recipe) Version:1.1.2    
[02:35:08]: Could not load mod_config_data/modconfiguration_workshop-365119238    
[02:35:08]: Loading mod: workshop-365119238 (SmartCrockPot) Version:4.02    
[02:35:08]: Could not load mod_config_data/modconfiguration_workshop-367593872    
[02:35:08]: Loading mod: workshop-367593872 (No More Lag) Version:1.1.2    
[02:35:08]: Could not load mod_config_data/modconfiguration_workshop-376333686    
[02:35:08]: Loading mod: workshop-376333686 (Combined Status) Version:1.6.6    
[02:35:08]: Could not load mod_config_data/modconfiguration_workshop-394612159    
[02:35:08]: Loading mod: workshop-394612159 (Auto ReTrap) Version:1.02    
[02:35:08]: Could not load mod_config_data/modconfiguration_workshop-522023088    
[02:35:08]: Loading mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT]) Version:1.2.4    
[02:35:08]: Could not load mod_config_data/modconfiguration_workshop-539957958    
[02:35:08]: Loading mod: workshop-539957958 (Persistent Compass HUD) Version:0.1    
[02:35:08]: Could not load mod_config_data/modconfiguration_workshop-609051112    
[02:35:08]: Loading mod: workshop-609051112 (Action Queue(DST)) Version:1.2.6    
[02:35:08]: Could not load mod_config_data/modconfiguration_workshop-661284815    
[02:35:08]: Loading mod: workshop-661284815 (Improved Force Attack) Version:0.5    
[02:35:08]: loaded mod_config_data/modconfiguration_workshop-672584952    
[02:35:08]: Loading mod: workshop-672584952 ([Updated] Complete Your Map) Version:4.32c    
[02:35:08]: loaded mod_config_data/modconfiguration_workshop-694531911    
[02:35:08]: Loading mod: workshop-694531911 ( [DST]Aerial view) Version:1.1.2    
[02:35:08]: Mod: workshop-365119238 (SmartCrockPot)    Loading modworldgenmain.lua    
[02:35:08]: Mod: workshop-365119238 (SmartCrockPot)      Mod had no modworldgenmain.lua. Skipping.    
[02:35:08]: Mod: workshop-365119238 (SmartCrockPot)    Loading modmain.lua    
[02:35:08]: modimport: ../mods/workshop-365119238/modmain_segments/containerwidgetfunction.lua    
[02:35:08]: modimport: ../mods/workshop-365119238/modmain_segments/containers_setup.lua    
[02:35:08]: modimport: ../mods/workshop-365119238/modmain_segments/action_predict.lua    
[02:35:08]: WARNING: Positional Action parameters are deprecated. Please pass action a table instead.    
[02:35:08]: Action defined at     ../mods/workshop-365119238/modmain_segments/action_predict.lua:1 in (local) result (main) <0-0>    
[02:35:08]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Loading modworldgenmain.lua    
[02:35:08]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Mod had no modworldgenmain.lua. Skipping.    
[02:35:08]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Loading modmain.lua    
[02:35:08]: Mod: workshop-362906105 (Sticky Recipe)    Loading modworldgenmain.lua    
[02:35:08]: Mod: workshop-362906105 (Sticky Recipe)      Mod had no modworldgenmain.lua. Skipping.    
[02:35:08]: Mod: workshop-362906105 (Sticky Recipe)    Loading modmain.lua    
[02:35:08]: Mod: workshop-344071294 (Quick Emotes)    Loading modworldgenmain.lua    
[02:35:08]: Mod: workshop-344071294 (Quick Emotes)      Mod had no modworldgenmain.lua. Skipping.    
[02:35:08]: Mod: workshop-344071294 (Quick Emotes)    Loading modmain.lua    
[02:35:08]: Mod: workshop-539957958 (Persistent Compass HUD)    Loading modworldgenmain.lua    
[02:35:08]: Mod: workshop-539957958 (Persistent Compass HUD)      Mod had no modworldgenmain.lua. Skipping.    
[02:35:08]: Mod: workshop-539957958 (Persistent Compass HUD)    Loading modmain.lua    
[02:35:08]: Mod: workshop-367593872 (No More Lag)    Loading modworldgenmain.lua    
[02:35:08]: Mod: workshop-367593872 (No More Lag)      Mod had no modworldgenmain.lua. Skipping.    
[02:35:08]: Mod: workshop-367593872 (No More Lag)    Loading modmain.lua    
[02:35:08]: Mod: workshop-345692228 (Minimap HUD)    Loading modworldgenmain.lua    
[02:35:08]: Mod: workshop-345692228 (Minimap HUD)      Mod had no modworldgenmain.lua. Skipping.    
[02:35:08]: Mod: workshop-345692228 (Minimap HUD)    Loading modmain.lua    
[02:35:08]: Mod: workshop-661284815 (Improved Force Attack)    Loading modworldgenmain.lua    
[02:35:08]: Mod: workshop-661284815 (Improved Force Attack)      Mod had no modworldgenmain.lua. Skipping.    
[02:35:08]: Mod: workshop-661284815 (Improved Force Attack)    Loading modmain.lua    
[02:35:08]: Mod: workshop-376333686 (Combined Status)    Loading modworldgenmain.lua    
[02:35:08]: Mod: workshop-376333686 (Combined Status)      Mod had no modworldgenmain.lua. Skipping.    
[02:35:08]: Mod: workshop-376333686 (Combined Status)    Loading modmain.lua    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-344071294    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-345692228    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-351325790    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-362906105    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-365119238    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-367593872    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-394612159    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-522023088    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-539957958    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-609051112    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-661284815    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-672584952    
[02:35:08]: ModIndex:GetModsToLoad inserting moddir,     workshop-694531911    
[02:35:08]: Mod: workshop-394612159 (Auto ReTrap)    Loading modworldgenmain.lua    
[02:35:08]: Mod: workshop-394612159 (Auto ReTrap)      Mod had no modworldgenmain.lua. Skipping.    
[02:35:08]: Mod: workshop-394612159 (Auto ReTrap)    Loading modmain.lua    
[02:35:08]: Mod: workshop-609051112 (Action Queue(DST))    Loading modworldgenmain.lua    
[02:35:08]: Mod: workshop-609051112 (Action Queue(DST))      Mod had no modworldgenmain.lua. Skipping.    
[02:35:08]: Mod: workshop-609051112 (Action Queue(DST))    Loading modmain.lua    
[02:35:08]: Mod: workshop-694531911 ( [DST]Aerial view)    Loading modworldgenmain.lua    
[02:35:08]: Mod: workshop-694531911 ( [DST]Aerial view)      Mod had no modworldgenmain.lua. Skipping.    
[02:35:08]: Mod: workshop-694531911 ( [DST]Aerial view)    Loading modmain.lua    
[02:35:08]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Loading modworldgenmain.lua    
[02:35:08]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Mod had no modworldgenmain.lua. Skipping.    
[02:35:08]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Loading modmain.lua    
[02:35:08]: Client Version Running    
[02:35:08]: Mod: workshop-351325790 (Geometric Placement)    Loading modworldgenmain.lua    
[02:35:08]: Mod: workshop-351325790 (Geometric Placement)      Mod had no modworldgenmain.lua. Skipping.    
[02:35:08]: Mod: workshop-351325790 (Geometric Placement)    Loading modmain.lua    
[02:35:08]: LOADING LUA SUCCESS
[02:35:08]: PlayerDeaths loaded morgue    2056    
[02:35:08]: PlayerHistory loaded player_history    11273    
[02:35:08]: bloom_enabled    false    
[02:35:08]: loaded saveindex    
[02:35:08]: OnFilesLoaded()    
[02:35:08]: OnUpdatePurchaseStateComplete    
[02:35:08]:     Unload BE    
[02:35:08]:     Unload BE done    
[02:35:08]: Could not unload undefined prefab 0xb0a79a1 (twiggy_nut)
[02:35:08]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[02:35:08]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[02:35:08]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[02:35:08]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[02:35:08]: Could not unload undefined prefab 0x359da624 (log)
[02:35:08]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[02:35:08]: Could not unload undefined prefab 0x29d8efdb (red_leaves_chop)
[02:35:08]: Could not unload undefined prefab 0x39590c78 (orange_leaves_chop)
[02:35:08]: Could not unload undefined prefab 0x2d1c40c (deciduous_root)
[02:35:08]: Could not unload undefined prefab 0x41ba89b5 (nightmarefuel)
[02:35:08]: Could not unload undefined prefab 0x29ad5029 (spoiled_food)
[02:35:08]: Could not unload undefined prefab 0x235a9a90 (birchnutdrake)
[02:35:08]: Could not unload undefined prefab 0x184178b (meat)
[02:35:08]: Could not unload undefined prefab 0x359da624 (log)
[02:35:08]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[02:35:08]: Could not unload undefined prefab 0x706870b6 (green_cap)
[02:35:08]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[02:35:08]: Could not unload undefined prefab 0x3036fc96 (ash)
[02:35:08]: Could not unload undefined prefab 0x1a35332f (spore_medium)
[02:35:08]: Could not unload undefined prefab 0x8119781a (cookedmandrake)
[02:35:08]: Could not unload undefined prefab 0x8c6be253 (mandrake)
[02:35:08]: Could not unload undefined prefab 0x8c6be253 (mandrake)
[02:35:08]: Could not unload undefined prefab 0xa694a25e (mandrake_planted)
[02:35:08]: Could not unload undefined prefab 0x359da624 (log)
[02:35:08]: Could not unload undefined prefab 0x112002ba (twiggy_nut_sapling)
[02:35:08]: Could not unload undefined prefab 0x184178b (meat)
[02:35:08]: Could not unload undefined prefab 0x359da624 (log)
[02:35:08]: Could not unload undefined prefab 0x1078732c (character_fire)
[02:35:08]: Could not unload undefined prefab 0x184178b (meat)
[02:35:08]: Could not unload undefined prefab 0x359da624 (log)
[02:35:08]: Could not unload undefined prefab 0x1078732c (character_fire)
[02:35:08]: Could not unload undefined prefab 0x78d69cdc (rock_petrified_tree_short)
[02:35:08]: Could not unload undefined prefab 0x4f122f8c (rock_petrified_tree_med)
[02:35:08]: Could not unload undefined prefab 0x9ce1eaee (rocks)
[02:35:08]: Could not unload undefined prefab 0x7e6d93ac (nitre)
[02:35:08]: Could not unload undefined prefab 0x50155047 (rock_petrified_tree_old)
[02:35:08]: Could not unload undefined prefab 0xaec874c8 (disease_puff)
[02:35:08]: Could not unload undefined prefab 0xdaf8d5d (disease_fx_small)
[02:35:08]: Could not unload undefined prefab 0xfb37cd5 (disease_fx)
[02:35:08]: Could not unload undefined prefab 0x1c124037 (disease_fx_tall)
[02:35:08]: Could not unload undefined prefab 0x359da624 (log)
[02:35:08]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[02:35:08]: Could not unload undefined prefab 0x706870b6 (green_cap)
[02:35:08]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[02:35:08]: Could not unload undefined prefab 0x3036fc96 (ash)
[02:35:08]: Could not unload undefined prefab 0xed18eed (spore_small)
[02:35:08]: Could not unload undefined prefab 0x8539b55b (mushtree_small_burntfx)
[02:35:08]: Could not unload undefined prefab 0x994e32df (mushtree_small_bloom_burntfx)
[02:35:08]: Could not unload undefined prefab 0x359da624 (log)
[02:35:08]: Could not unload undefined prefab 0x2a9524cd (blue_cap)
[02:35:08]: Could not unload undefined prefab 0x706870b6 (green_cap)
[02:35:08]: Could not unload undefined prefab 0x1c1e3dc4 (red_cap)
[02:35:08]: Could not unload undefined prefab 0x3036fc96 (ash)
[02:35:08]: Could not unload undefined prefab 0x5286daa7 (spore_tall)
[02:35:08]: Could not unload undefined prefab 0x9db421e9 (mushtree_tall_burntfx)
[02:35:08]: Could not unload undefined prefab 0x4336ea6d (mushtree_tall_bloom_burntfx)
[02:35:09]: Mod: workshop-365119238 (SmartCrockPot)    Registering prefabs    
[02:35:09]: Mod: workshop-365119238 (SmartCrockPot)      Registering default mod prefab    
[02:35:09]: Mod: workshop-672584952 ([Updated] Complete Your Map)    Registering prefabs    
[02:35:09]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Registering prefab file: prefabs/mapiconhelper    
[02:35:09]: Mod: workshop-672584952 ([Updated] Complete Your Map)        mapiconhelper    
[02:35:09]: Mod: workshop-672584952 ([Updated] Complete Your Map)      Registering default mod prefab    
[02:35:09]: Mod: workshop-362906105 (Sticky Recipe)    Registering prefabs    
[02:35:09]: Mod: workshop-362906105 (Sticky Recipe)      Registering default mod prefab    
[02:35:09]: Mod: workshop-344071294 (Quick Emotes)    Registering prefabs    
[02:35:09]: Mod: workshop-344071294 (Quick Emotes)      Registering default mod prefab    
[02:35:09]: Mod: workshop-539957958 (Persistent Compass HUD)    Registering prefabs    
[02:35:09]: Mod: workshop-539957958 (Persistent Compass HUD)      Registering default mod prefab    
[02:35:09]: Mod: workshop-367593872 (No More Lag)    Registering prefabs    
[02:35:09]: Mod: workshop-367593872 (No More Lag)      Registering default mod prefab    
[02:35:09]: Mod: workshop-345692228 (Minimap HUD)    Registering prefabs    
[02:35:09]: Mod: workshop-345692228 (Minimap HUD)      Registering default mod prefab    
[02:35:09]: Mod: workshop-661284815 (Improved Force Attack)    Registering prefabs    
[02:35:09]: Mod: workshop-661284815 (Improved Force Attack)      Registering default mod prefab    
[02:35:09]: Mod: workshop-376333686 (Combined Status)    Registering prefabs    
[02:35:09]: Mod: workshop-376333686 (Combined Status)      Registering default mod prefab    
[02:35:09]: Mod: workshop-394612159 (Auto ReTrap)    Registering prefabs    
[02:35:09]: Mod: workshop-394612159 (Auto ReTrap)      Registering default mod prefab    
[02:35:09]: Mod: workshop-609051112 (Action Queue(DST))    Registering prefabs    
[02:35:09]: Mod: workshop-609051112 (Action Queue(DST))      Registering default mod prefab    
[02:35:09]: Mod: workshop-694531911 ( [DST]Aerial view)    Registering prefabs    
[02:35:09]: Mod: workshop-694531911 ( [DST]Aerial view)      Registering default mod prefab    
[02:35:09]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])    Registering prefabs    
[02:35:09]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Registering prefab file: prefabs/range    
[02:35:09]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])        range_indicator_client    
[02:35:09]: Mod: workshop-522023088 (Ice Fling Range Check [DST CLIENT])      Registering default mod prefab    
[02:35:09]: Mod: workshop-351325790 (Geometric Placement)    Registering prefabs    
[02:35:09]: Mod: workshop-351325790 (Geometric Placement)      Registering prefab file: prefabs/buildgridplacer    
[02:35:09]: Mod: workshop-351325790 (Geometric Placement)        buildgridplacer    
[02:35:09]: Mod: workshop-351325790 (Geometric Placement)      Registering default mod prefab    
[02:35:09]:     Load FE    
[02:35:10]:     Load FE: done    
[02:35:10]: OnLoadPermissionList: APP:Klei//DoNotStarveTogether/client_save/blocklist.txt (Success)
[02:35:10]: OnLoadPermissionList: APP:Klei//DoNotStarveTogether/client_save/adminlist.txt (Failure)
[02:35:10]: OnLoadUserIdList: APP:Klei//DoNotStarveTogether/client_save/whitelist.txt (Failure)
[02:35:10]: SimLuaProxy::QueryServer()
[02:35:10]: ModIndex: Load sequence finished successfully.    
[02:35:10]: Reset() returning
[02:35:11]: [200] Account Communication Success (6)
[02:35:11]: Received (KU_bPVGW5kg) from TokenPurpose
[02:35:11]: [Steam] Auth Session Ticket requested...
[02:35:11]: loaded inventory_cache
[02:35:11]: [Steam] Got Auth Session Ticket
[02:35:12]: saved inventory_cache
[02:35:12]: saved inventory_cache_sig
[02:35:13]: SimLuaProxy::QueryServer()
[02:35:14]:    EResult 15, 367082522
[02:35:14]: Failed getting mod details.
[02:35:15]:    EResult 15, 373991022
[02:35:15]: Failed getting mod details.
[02:35:16]:    EResult 15, 380094901
[02:35:16]: Failed getting mod details.
[02:35:16]: Friends are currently playing in 0 games(s)!
[02:35:16]: You belong to 3 clan(s)!
[02:35:16]: SteamWorkshop::CancelDownloads clearing all unfinished downloads
[02:35:16]: Downloaded server listings - full: 2448 filtered: 1474
[02:35:26]:    EResult 15, 367082522
[02:35:26]: Failed getting mod details.
[02:35:27]:    EResult 15, 373991022
[02:35:27]: Failed getting mod details.
[02:35:28]:    EResult 15, 380094901
[02:35:28]: Failed getting mod details.
[02:35:31]:    EResult 15, 426856213
[02:35:31]: Failed getting mod details.
[02:35:33]:    EResult 15, 394470072
[02:35:33]: Failed getting mod details.
[02:35:54]: DownloadPublishedFileV2()
[02:35:54]: Did not find the ugc handle in the cache. This is likely because you're subscribed to a non-existent file 367082522
[02:35:54]: DownloadPublishedFileV2()
[02:35:54]: Did not find the ugc handle in the cache. This is likely because you're subscribed to a non-existent file 373991022
[02:35:54]: DownloadPublishedFileV2()
[02:35:54]: Did not find the ugc handle in the cache. This is likely because you're subscribed to a non-existent file 380094901
[02:35:54]: DownloadPublishedFileV2()
[02:35:54]: Did not find the ugc handle in the cache. This is likely because you're subscribed to a non-existent file 426856213
[02:35:54]: DownloadPublishedFileV2()
[02:35:54]: Did not find the ugc handle in the cache. This is likely because you're subscribed to a non-existent file 394470072
[02:37:04]: unloading prefabs for mod MOD_workshop-365119238    
[02:37:04]: unloading prefabs for mod MOD_workshop-672584952    
[02:37:04]: unloading prefabs for mod MOD_workshop-362906105    
[02:37:04]: unloading prefabs for mod MOD_workshop-344071294    
[02:37:04]: unloading prefabs for mod MOD_workshop-539957958    
[02:37:04]: unloading prefabs for mod MOD_workshop-367593872    
[02:37:04]: unloading prefabs for mod MOD_workshop-345692228    
[02:37:04]: unloading prefabs for mod MOD_workshop-661284815    
[02:37:04]: unloading prefabs for mod MOD_workshop-376333686    
[02:37:04]: unloading prefabs for mod MOD_workshop-394612159    
[02:37:04]: unloading prefabs for mod MOD_workshop-609051112    
[02:37:04]: unloading prefabs for mod MOD_workshop-694531911    
[02:37:04]: unloading prefabs for mod MOD_workshop-522023088    
[02:37:04]: unloading prefabs for mod MOD_workshop-351325790    
[02:37:04]: SteamWorkshop::CancelDownloads clearing all unfinished downloads
[02:37:04]: Collecting garbage...
[02:37:04]: lua_gc took 0.03 seconds
[02:37:04]: ~ShardLuaProxy()
[02:37:04]: ~ItemServerLuaProxy()
[02:37:04]: ~InventoryLuaProxy()
[02:37:04]: ~NetworkLuaProxy()
[02:37:04]: ~SimLuaProxy()
[02:37:04]: SteamWorkshop::CancelDownloads clearing all unfinished downloads
[02:37:04]: lua_close took 0.02 seconds
[02:37:04]: SteamWorkshop::CancelDownloads clearing all unfinished downloads
[02:37:04]: saved ping_cache
[02:37:04]: [Steam] Auth ticket cancelled
[02:37:04]:  Manager - ORPHANED UNKNOWN RESOURCES:
[02:37:04]: anim/watermelon.zip - 4
[02:37:04]: anim/robin_build.zip - 4
[02:37:04]: anim/star.zip - 4
[02:37:04]: anim/disease_fx.zip - 16
[02:37:04]: anim/bird_eggs.zip - 4
[02:37:04]: anim/batwing.zip - 22
[02:37:04]: anim/structure_collapse_fx.zip - 8
[02:37:04]: anim/butterfly_basic.zip - 4
[02:37:04]: anim/bee_angry_build.zip - 4
[02:37:04]: anim/gems.zip - 12
[02:37:04]: anim/robin_winter_build.zip - 4
[02:37:04]: anim/feather_robin_winter.zip - 4
[02:37:04]: anim/staff_projectile.zip - 8
[02:37:04]: anim/crow_build.zip - 4
[02:37:04]: anim/amulets.zip - 8
[02:37:04]: anim/impact.zip - 4
[02:37:04]: anim/pig_house.zip - 4
[02:37:04]: anim/hound_ice.zip - 4
[02:37:04]: anim/meat.zip - 22
[02:37:04]: anim/flowers_evil.zip - 4
[02:37:04]: anim/kiki_nightmare_skin.zip - 4
[02:37:04]: anim/tree_leaf_spike.zip - 4
[02:37:04]: anim/twigs.zip - 4
[02:37:04]: anim/dragonfruit.zip - 4
[02:37:04]: anim/bishop_attack.zip - 4
[02:37:04]: anim/hat_mole.zip - 4
[02:37:04]: anim/staff.zip - 4
[02:37:04]: anim/berries_juicy.zip - 4
[02:37:04]: anim/cave_banana.zip - 4
[02:37:04]: anim/meat_human.zip - 22
[02:37:04]: anim/lavae_move_fx.zip - 4
[02:37:04]: anim/seeds.zip - 12
[02:37:04]: anim/splash_snow.zip - 4
[02:37:04]: anim/frog_legs.zip - 4
[02:37:04]: anim/flower_petals_evil.zip - 4
[02:37:04]: anim/treedrake.zip - 4
[02:37:04]: anim/treedrake_build.zip - 4
[02:37:04]: anim/gridplacer.zip - 4
[02:37:04]: anim/hound_basic.zip - 4
[02:37:04]: anim/cutgrass.zip - 4
[02:37:04]: anim/spoiled_food.zip - 6
[02:37:04]: anim/bernie.zip - 4
[02:37:04]: anim/farm_decor.zip - 24
[02:37:04]: anim/pinecone.zip - 8
[02:37:04]: anim/nightmarefuel.zip - 4
[02:37:04]: anim/log.zip - 6
[02:37:04]: anim/smoke_puff_small.zip - 6
[02:37:04]: anim/explode.zip - 4
[02:37:04]: anim/swap_blowdart.zip - 4
[02:37:04]: anim/fire_large_character.zip - 6
[02:37:04]: anim/swap_blowdart_pipe.zip - 4
[02:37:04]: anim/mushroom_spore_blue.zip - 8
[02:37:04]: anim/poop.zip - 4
[02:37:04]: anim/hound_red.zip - 4
[02:37:04]: anim/poop_cloud.zip - 4
[02:37:04]: anim/torso_amulets.zip - 8
[02:37:04]: anim/fireflies.zip - 4
[02:37:04]: anim/meat_small.zip - 22
[02:37:04]: anim/crow.zip - 12
[02:37:04]: anim/goose_feather.zip - 4
[02:37:04]: anim/blow_dart.zip - 4
[02:37:04]: anim/kiki_build.zip - 4
[02:37:04]: anim/twiggy_nut.zip - 8
[02:37:04]: anim/bee.zip - 4
[02:37:04]: anim/meat_rack_food.zip - 22
[02:37:04]: anim/plant_meat.zip - 22
[02:37:04]: anim/tree_leaf_fx_red.zip - 4
[02:37:04]: anim/mushroom_spore.zip - 8
[02:37:04]: anim/drumstick.zip - 22
[02:37:04]: anim/koalephant_trunk.zip - 4
[02:37:04]: anim/campfire_fire.zip - 4
[02:37:04]: anim/kiki_basic.zip - 4
[02:37:04]: anim/charcoal.zip - 4
[02:37:04]: anim/mole_build.zip - 4
[02:37:04]: anim/hat_top.zip - 4
[02:37:04]: anim/mushrooms.zip - 18
[02:37:04]: anim/mandrake.zip - 6
[02:37:04]: anim/thulecite.zip - 4
[02:37:04]: anim/frozen_shatter.zip - 4
[02:37:04]: anim/coldfire_fire.zip - 4
[02:37:04]: anim/hound.zip - 4
[02:37:04]: anim/ash.zip - 6
[02:37:04]: anim/silk.zip - 4
[02:37:04]: anim/mushroom_spore_red.zip - 8
[02:37:04]: anim/tentacle.zip - 4
[02:37:04]: anim/bee_build.zip - 4
[02:37:04]: anim/mole_basic.zip - 4
[02:37:04]: anim/transistor.zip - 4
[02:37:04]: anim/marble.zip - 4
[02:37:04]: anim/meat_monster.zip - 22
[02:37:04]: anim/bernie_build.zip - 4
[02:37:04]:  Manager - ORPHANED UNKNOWN RESOURCES:
[02:37:04]: shaders/ui_yuv.ksh - 1
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[02:37:04]:  Manager - ORPHANED UNKNOWN RESOURCES:
[02:37:04]: anim/staff_projectile.zip:staff_projectile--atlas-0.tex - 1
[02:37:04]: anim/hat_top.zip:hat_top--atlas-0.tex - 1
[02:37:04]: anim/treedrake_build.zip:treedrake_build--atlas-0.tex - 1
[02:37:04]: anim/kiki_basic.zip:kiki_basic--atlas-0.tex - 1
[02:37:04]: anim/campfire_fire.zip:campfire_fire--atlas-0.tex - 1
[02:37:04]: anim/thulecite.zip:thulecite--atlas-0.tex - 1
[02:37:04]: anim/fire_large_character.zip:fire_large_character--atlas-0.tex - 1
[02:37:04]: anim/splash_snow.zip:splash_snow--atlas-0.tex - 1
[02:37:04]: anim/frog_legs.zip:frog_legs--atlas-1.tex - 1
[02:37:04]: anim/tree_leaf_fx_red.zip:tree_leaf_fx_red--atlas-0.tex - 1
[02:37:04]: anim/koalephant_trunk.zip:koalephant_trunk--atlas-0.tex - 1
[02:37:04]: anim/tree_leaf_spike.zip:tree_leaf_spike--atlas-0.tex - 1
[02:37:04]: anim/bee_build.zip:bee_build--atlas-0.tex - 1
[02:37:04]: anim/goose_feather.zip:goose_feather--atlas-0.tex - 1
[02:37:04]: anim/bird_eggs.zip:bird_eggs--atlas-0.tex - 1
[02:37:04]: anim/gems.zip:gems--atlas-0.tex - 1
[02:37:04]: anim/kiki_nightmare_skin.zip:kiki_nightmare_skin--atlas-0.tex - 1
[02:37:04]: anim/fireflies.zip:fireflies--atlas-0.tex - 1
[02:37:04]: anim/lavae_move_fx.zip:lavae_move_fx--atlas-0.tex - 1
[02:37:04]: anim/meat_rack_food.zip:meat_rack_food--atlas-0.tex - 1
[02:37:04]: anim/star.zip:star--atlas-0.tex - 1
[02:37:04]: anim/mushroom_spore_blue.zip:mushroom_spore_blue--atlas-0.tex - 1
[02:37:04]: anim/pinecone.zip:pinecone--atlas-0.tex - 1
[02:37:04]: anim/flowers_evil.zip:flowers_evil--atlas-0.tex - 1
[02:37:04]: anim/dragonfruit.zip:dragonfruit--atlas-0.tex - 1
[02:37:04]: anim/amulets.zip:amulets--atlas-0.tex - 1
[02:37:04]: anim/ash.zip:ash--atlas-0.tex - 1
[02:37:04]: anim/robin_winter_build.zip:robin_winter_build--atlas-0.tex - 1
[02:37:04]: anim/berries_juicy.zip:berries_juicy--atlas-0.tex - 1
[02:37:04]: anim/fire_large_character.zip:fire_large_character--atlas-1.tex - 1
[02:37:04]: anim/structure_collapse_fx.zip:structure_collapse_fx--atlas-0.tex - 1
[02:37:04]: anim/hound_red.zip:hound_red--atlas-0.tex - 1
[02:37:04]: anim/mole_build.zip:mole_build--atlas-0.tex - 1
[02:37:04]: anim/feather_robin_winter.zip:feather_robin_winter--atlas-0.tex - 1
[02:37:04]: anim/staff.zip:staff--atlas-0.tex - 1
[02:37:04]: anim/disease_fx.zip:disease_fx--atlas-0.tex - 1
[02:37:04]: anim/tree_leaf_spike.zip:tree_leaf_spike--atlas-1.tex - 1
[02:37:04]: anim/meat_human.zip:meat_human--atlas-0.tex - 1
[02:37:04]: anim/meat_small.zip:meat_small--atlas-0.tex - 1
[02:37:04]: anim/nightmarefuel.zip:nightmarefuel--atlas-0.tex - 1
[02:37:04]: anim/mushroom_spore.zip:mushroom_spore--atlas-0.tex - 1
[02:37:04]: anim/blow_dart.zip:blow_dart--atlas-0.tex - 1
[02:37:04]: anim/pig_house.zip:pig_house--atlas-0.tex - 1
[02:37:04]: anim/gridplacer.zip:gridplacer--atlas-0.tex - 1
[02:37:04]: anim/flower_petals_evil.zip:flower_petals_evil--atlas-0.tex - 1
[02:37:04]: anim/hat_mole.zip:hat_mole--atlas-0.tex - 1
[02:37:04]: anim/charcoal.zip:charcoal--atlas-0.tex - 1
[02:37:04]: anim/mushroom_spore_red.zip:mushroom_spore_red--atlas-0.tex - 1
[02:37:04]: anim/crow_build.zip:crow_build--atlas-0.tex - 1
[02:37:04]: anim/explode.zip:explode--atlas-0.tex - 1
[02:37:04]: anim/seeds.zip:seeds--atlas-0.tex - 1
[02:37:04]: anim/cutgrass.zip:cutgrass--atlas-0.tex - 1
[02:37:04]: anim/cave_banana.zip:cave_banana--atlas-0.tex - 1
[02:37:04]: anim/bernie_build.zip:bernie_build--atlas-0.tex - 1
[02:37:04]: anim/drumstick.zip:drumstick--atlas-0.tex - 1
[02:37:04]: anim/poop.zip:poop--atlas-0.tex - 1
[02:37:04]: anim/meat.zip:meat--atlas-0.tex - 1
[02:37:04]: anim/impact.zip:impact--atlas-0.tex - 1
[02:37:04]: anim/poop_cloud.zip:poop_cloud--atlas-0.tex - 1
[02:37:04]: anim/robin_build.zip:robin_build--atlas-0.tex - 1
[02:37:04]: anim/swap_blowdart_pipe.zip:swap_blowdart_pipe--atlas-0.tex - 1
[02:37:04]: anim/coldfire_fire.zip:coldfire_fire--atlas-0.tex - 1
[02:37:04]: anim/tentacle.zip:tentacle--atlas-0.tex - 1
[02:37:04]: anim/marble.zip:marble--atlas-0.tex - 1
[02:37:04]: anim/frozen_shatter.zip:frozen_shatter--atlas-0.tex - 1
[02:37:04]: anim/batwing.zip:batwing--atlas-0.tex - 1
[02:37:04]: anim/mushrooms.zip:mushrooms--atlas-0.tex - 1
[02:37:04]: anim/transistor.zip:transistor--atlas-0.tex - 1
[02:37:04]: anim/log.zip:log--atlas-0.tex - 1
[02:37:04]: anim/smoke_puff_small.zip:smoke_puff_small--atlas-0.tex - 1
[02:37:04]: anim/plant_meat.zip:plant_meat--atlas-0.tex - 1
[02:37:04]: anim/twigs.zip:twigs--atlas-0.tex - 1
[02:37:04]: anim/hound_ice.zip:hound_ice--atlas-0.tex - 1
[02:37:04]: anim/hound.zip:hound--atlas-0.tex - 1
[02:37:04]: anim/spoiled_food.zip:spoiled_food--atlas-0.tex - 1
[02:37:04]: anim/silk.zip:silk--atlas-0.tex - 1
[02:37:04]: anim/frog_legs.zip:frog_legs--atlas-0.tex - 1
[02:37:04]: anim/mandrake.zip:mandrake--atlas-0.tex - 1
[02:37:04]: anim/swap_blowdart.zip:swap_blowdart--atlas-0.tex - 1
[02:37:04]: anim/bishop_attack.zip:bishop_attack--atlas-0.tex - 1
[02:37:04]: anim/farm_decor.zip:farm_decor--atlas-0.tex - 1
[02:37:04]: anim/torso_amulets.zip:torso_amulets--atlas-0.tex - 1
[02:37:04]: anim/butterfly_basic.zip:butterfly_basic--atlas-0.tex - 1
[02:37:04]: anim/batwing.zip:batwing--atlas-1.tex - 1
[02:37:04]: anim/meat_monster.zip:meat_monster--atlas-0.tex - 1
[02:37:04]: anim/twiggy_nut.zip:twiggy_nut--atlas-0.tex - 1
[02:37:04]: anim/watermelon.zip:watermelon--atlas-0.tex - 1
[02:37:04]: anim/bee_angry_build.zip:bee_angry_build--atlas-0.tex - 1
[02:37:04]: CurlRequestManager::ClientThread::Main() complete
[02:37:04]: HttpClient2 discarded 0 callbacks.
[02:37:04]: Shutting down
 

I feel like such a burden to everyone right now, yet it's really not working :/ such basic stuff and the game just downright crashes :(

EDIT: Also, any idea how I even upload mods on steam? The steamapps/common has a mod uploader, but I don't know how it works/how to use it. Someone also told me you can make the mod friends only for now... how would I do that too, if that's not obvious? Just want to test the vote kicking mod as it seems to not crash the game or cause any bugs when creating a world and playing as far as I know.

Edited by EuedeAdodooedoe

something is really strange with your logfile... maybe you look at the wrong logfile?
Because the logfile you posted

1) has many many mods installed

2) includes no error, except the one you posted last time which I can't explain.

So I'm very sure it is the wrong file ;)
I copy pasted your code and the correct error you get looks like this:
 

[00:00:34]: [string "../mods/testmod/modmain.lua"]:2: attempt to perform arithmetic on field 'SEG_TIM' (a nil value)
LUA ERROR stack traceback:
        ../mods/testmod/modmain.lua(2,1) in main chunk
        =[C] in function 'xpcall'
        scripts/util.lua(609,1) in function 'RunInEnvironment'
        scripts/mods.lua(477,1) in function 'InitializeModMain'
        scripts/mods.lua(451,1) in function 'LoadMods'
        scripts/main.lua(252,1) in function 'ModSafeStartup'
        scripts/main.lua(307,1)
        =[C] in function 'SetPersistentString'
        scripts/mainfunctions.lua(22,1) in function 'SavePersistentString'
        scripts/modindex.lua(76,1)
        =[C] in function 'GetPersistentString'
        scripts/modindex.lua(63,1) in function 'BeginStartupSequence'
        scripts/main.lua(306,1) in function 'callback'
        scripts/modindex.lua(516,1)
        =[C] in function 'GetPersistentString'
        scripts/modindex.lua(490,1) in function 'Load'
        scripts/main.lua(305,1) in main chunk
[00:00:34]: [string "scripts/mainfunctions.lua"]:971: variable 'global_error_widget' is not declared
LUA ERROR stack traceback:
        =[C] in function 'error'
        scripts/strict.lua(23,1)
        scripts/mainfunctions.lua(971,1)
        =[C] in function 'SetPersistentString'
        scripts/mainfunctions.lua(22,1) in function 'SavePersistentString'
        scripts/modindex.lua(76,1)
        =[C] in function 'GetPersistentString'
        scripts/modindex.lua(63,1) in function 'BeginStartupSequence'
        scripts/main.lua(306,1) in function 'callback'
        scripts/modindex.lua(516,1)
        =[C] in function 'GetPersistentString'
        scripts/modindex.lua(490,1) in function 'Load'
        scripts/main.lua(305,1) in main chunk

I'm sure you can solve this issue ;)
And try to find the correct logfile ;)

Yes just use that moduploader. It is easy to use, but I often had problems with that "preview" image. It is mandatory, but no one needs it :D so you have to add a stupid jpg file and name it preview , just to upload your mod. And you can't use the same preview.jpg two times in a row (for some of my friends-only mods I tried to use always the same preview image. Now I have two different images and alternated them :D)
The "friends only" thing can be set on steam directly. Just upload a mod and look through all options you have at steam.

Well, I found the problem (a typo), but it still crashes the game. I checked the logs, and this is the error bit, it seems:

Spoiler

[00:00:08]: WARNING: Positional Action parameters are deprecated. Please pass action a table instead.    
[00:00:08]: Action defined at     ../mods/workshop-365119238/modmain_segments/action_predict.lua:1 in (local) result (main) <0-0>    

But I've no idea what it means. Also, I've added this bit of code at the beginning to the existing code:

Spoiler

AddPrefabPostInit("wolfgang", function(inst)
   inst.components.sanity:SetMax(100)
end)

EDIT: For some reason my client_log file isn't updating now every time I run the game :( I don't have any of these amounts of mods enabled as it says so! Why and how can I make sure it updates the logs or where else am I supposed to check them?

EDIT: I was looking in DST not DST ANR... such bollocks >:(

EDIT once more: Now, how do I get the wilson_attack variable, which is a local variable from the function within tuning.lua to be used in modmain.lua so that the game doesn't crash? If you check the modmain details I listed you before (aside from the typo), there's variables used that I assumed are set based on what you've said... but not all that are in the function of tuning.lua are in main.lua set up as you said or whatever shenanigans... and basically, this is what I had done at the top of modmain.lua because of the crash:

Spoiler

WILSON_ATTACK = wilson_attack
WILSON_HEALTH = wilson_health
DAY_TIME = day_time
DUSK_TIME = dusk_time
NIGHT_TIME = night_time
MULTIPLAYER_ARMOR_DURABILITY_MODIFIER = multiplayer_armor_durability_modifier

But it still crashes and gives me an error, with the logs being the same as before, essentially.

Edited by EuedeAdodooedoe

I don't like the way you are writing.
You alwasy write that style:
"I did exactly what you told me, but it crashes" (it sounds like "You are talking ********")
But in fact you are the one who made typo and other errors in your code and not even able to find the right logfile.

So please use another writing style, cause I'm here to help you, not to tell you wrong things.
And even if I would tell you wrong things, I'm not omniscient, so this can happen. But from what I know, all I told you in this thread was right.


The error in the previous post has again nothing to do with any of the code you provided.
So again:
You have to learn to read that logfile. If there is written:
...workshop-365119238/modmain_segments/action_predict.lua:1
then the error is most likely there, and not in your modmain.
There are some exceptions, where the error is talking about a completely wrong file, mostly if you missed a bracket or "end" in your file. But first look in the file and line, the log is talking about (of course in the corerct logfile)

If you want to change everything that uses "wilson_attack", I would do it the same way, like you did it already for SEG_TIME.
The only difference is now, that there is no TUNING.WILSON_ATTACK in tuning.lua, so you have to find another thing, that is exactly the same like wilson_attack.  In this case it is TUNING.SPEAR_DAMAGE . So you change this value and then use it to change all the oter values.
Yes this is again much work, it would be easy if you could change the locals directly. But from what I know this is not possible. And the devs made it that way (they could have made it more mod friendly), so this is the only way I know.
 

Edited by Serpens
1 hour ago, Serpens said:

I don't like the way you are writing.
You alwasy write that style:
"I did exactly what you told me, but it crashes" (it sounds like "You are talking ********")
But in fact you are the one who made typo and other errors in your code and not even able to find the right logfile.

So please use another writing style, cause I'm here to help you, not to tell you wrong things.
And even if I would tell you wrong things, I'm not omniscient, so this can happen. But from what I know, all I told you in this thread was right.


The error in the previous post has again nothing to do with any of the code you provided.
So again:
You have to learn to read that logfile. If there is written:
...workshop-365119238/modmain_segments/action_predict.lua:1
then the error is most likely there, and not in your modmain.
There are some exceptions, where the error is talking about a completely wrong file, mostly if you missed a bracket or "end" in your file. But first look in the file and line, the log is talking about (of course in the corerct logfile)

If you want to change everything that uses "wilson_attack", I would do it the same way, like you did it already for SEG_TIME.
The only difference is now, that there is no TUNING.WILSON_ATTACK in tuning.lua, so you have to find another thing, that is exactly the same like wilson_attack.  In this case it is TUNING.SPEAR_DAMAGE . So you change this value and then use it to change all the oter values.
Yes this is again much work, it would be easy if you could change the locals directly. But from what I know this is not possible. And the devs made it that way (they could have made it more mod friendly), so this is the only way I know.
 

I'm trying to be direct (saying what is what, and especially in the case of understanding coding language right, weird muffled language can make things obscure). I'm probably reporting on what I've done a bit too early, I've noticed, so I'll try to avoid that. I don't know exactly what "wiritng" style you're talking about. If I say "I did exactly what you told me, but it still crashes"... well... what else can I say? How's this even offensive, I don't understand? I can only see me looking like an idiot, but other than that, how am I offending you? I am not sure I can just straight up change my "writing style". I've no idea how to even interpret it the way you did. If you're feeling like I'm being ungrateful, trust me, I'm really grateful for the help I'm getting here.

Also, it turns out I was stupid... I was thinking these uppercased global variables are set in main.lua for some odd reason.

Hmm, I see. I'll guess I'll ask elsewhere with the whole "taking a local variable that's inside a function, which is inside a script (tuning.lua) and use it in another script (modmain.lua) when a global variable of the local variable's equivalent is non-existent" and then get back if need be. Again, appreciative of your help in this whole mess. I'm learning, step by step, being stupid for a while and rinse and repeat :p

4 hours ago, EuedeAdodooedoe said:

l ask elsewhere with the whole "taking a local variable that's inside a function, which is inside a script (tuning.lua) and use it in another script (modmain.lua) when a global variable of the local variable's equivalent is non-existent" and then get back if need be. Again, appreciative of your help in this whole mess. I'm learning, step by step, being stupid for a while and rinse and repeat :p

even if you were able to change the value of the local variable with help of your modmain, it would do nothing.
Cause the tuning.lua runs one time and it runs before your mod is applied.
So the value from the local variable are already in the TUNING table. And changing the local variable after that, won't change the TUNING table.

All I said about "you can't change local variables" is for local variables OUTSIDE of a function. (I did not see that in tuning.lua is a function used)
If they are inside of a function, you can change them by changing the function itself.
But I don't know how to do this for tuning.lua, because this is highly expert niveau...(because it seems there is no Class to hack into)

You really should start with the default stuff, which is more then challenging enough.
First you should understand all the other stuff we discussed in your other thread (if you undertstand all of this, you will know why I wrote that I need a class to be able to mod a function and indirect the local variables inside of it)   http://forums.kleientertainment.com/topic/70051-inventory-checking

 

Edited by Serpens
On 10/13/2016 at 0:03 PM, Serpens said:

I learned lua and modding itself by just "try and error" (or is it named "trial and error"??) :D
So I would suggest you to just pick some easy mods and look at their code. Eg. an easy mod like my "gunpowder more range" mod:  
http://steamcommunity.com/sharedfiles/filedetails/?id=763290344
You see these few lines and ingame you see the effect. So if you want to do simular things, just copy paste my code and replace some words, so insted of changing gunpowder, you change... a weapon uses or something.
In my first ~6 months of modding, I did not understand anything. I just blindly copy pasted code, replaced some code with my changes how I thought it could be right and then tried if there was an error. If there was an error I tried it a bit different and again and again. After the 100 error I asked at forum for help :D
But for me it was important to try it out myself first, even if I manly copy pasted code.

Exactly this was also the way I started modding Dont Starve :D
At first I was also annoyed that none of these API websites is working and there are no tutorials... But now I know, there is no need for those aPI websites, cause everything you need, you can find in the game lua files itself.
So the only kind of tutorial you need is of course how to code lua and in which lua files you find what.

I would also suggest to read my post here:

 

@SerpensLol this literally me right now, but I'm barely on month 3. Trial and error ftw!

I agree with what Serpens said. It's good to find a mod that isn't too complicated and mess around with it a little bit. Items like handhelds are especially easy to do for the most part. You'll get the hang of it eventually and if you can't seem to get it right after a few tries, you can always ask the kind people on the forums for a bit of help.

Edited by Luis95R

So, I'm still trying to figure out the whole "changing local variables within a function from a different file" thing, and thought about moving onto something else until I get some answers. As far as I'm aware, just copying a crafting recipe from recipes.lua and then plopping it into your mod main and adding "Add" in front of the recipe that you've changed would be enough to change it, right? Well, the game says otherwise and is expecting something from me after crashing the game:

Spoiler

[00:00:16]: MOD ERROR: Changed values: Mod: Changed values    
[00:00:16]: [string "../mods/Changed values/modmain.lua"]:368: attempt to index global 'RECIPETABS' (a nil value)

 

34 minutes ago, EuedeAdodooedoe said:

So, I'm still trying to figure out the whole "changing local variables within a function from a different file" thing, and thought about moving onto something else until I get some answers. As far as I'm aware, just copying a crafting recipe from recipes.lua and then plopping it into your mod main and adding "Add" in front of the recipe that you've changed would be enough to change it, right? Well, the game says otherwise and is expecting something from me after crashing the game:

  Reveal hidden contents

[00:00:16]: MOD ERROR: Changed values: Mod: Changed values    
[00:00:16]: [string "../mods/Changed values/modmain.lua"]:368: attempt to index global 'RECIPETABS' (a nil value)

 

search for some mods, that change/add recipes (in gerneal do something simular to what you want to do) and learn from how it is done there ;)

4 hours ago, EuedeAdodooedoe said:

[00:00:16]: [string "../mods/Changed values/modmain.lua"]:368: attempt to index global 'RECIPETABS' (a nil value)

I think this crash means that you need to put "GLOBAL." at line 368 near "RECIPETABS"

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...