View Issue Details
ID | Project | Category | Date Submitted | Last Update | |
---|---|---|---|---|---|
0023420 | AI War 2 | Crash/Exception | Jul 18, 2020 12:40 am | Jul 22, 2020 9:55 am | |
Reporter | Sol | Assigned To | Chris_McElligottPark | ||
Status | resolved | Resolution | fixed | ||
Product Version | 2.101 Connection Status: Confirmed | ||||
Fixed in Version | 2.102 Digression For Quality | ||||
Summary | 0023420: CTD from Custom Game Setting Menu | ||||
Description | When first entering the game, if I select Custom Game the custom game UI will appear but the space where the galaxy map should appear remains the start screen. The game hangs for a moment, then a Unity window pops up and shows a loading bar. After a short time, the unity window closes and the game crashes. If I first go to the quick game scenarios and choose to edit one of them, this will fix the problem and I will be able to exit to the start menu then choose custom game and it will display the custom game menu as normal. If I restart the game and choose custom game before doing this, it will repeat the sequence of events leading to a CTD. | ||||
Tags | No tags attached. | ||||
|
In the ArcenDebugLog.txt in your PlayerData folder, do you have an exceptions or similar? Also, if you are able to to find the player logs from directly after a CTD that would be helpful. These logs get overwritten as soon as you start the game again, but are located here: macOS ~/Library/Logs/Company Name/Product Name/Player.log Windows C:\Users\username\AppData\LocalLow\CompanyName\ProductName\Player.log Linux ~/.config/unity3d/CompanyName/ProductName/Player.log https://docs.unity3d.com/2019.1/Documentation/Manual/LogFiles.html Thanks! |
|
I had something like this when attempting to clean my game out to nab something. It was amended when I removed my profile. I had a mod that was active, and a faction from it was in the lobby. When cleaning the game out I had removed the mod, so I would guess the faction from a non-existent mod sitting in the lobby was the issue somehow. Only a theory, there were no logs or errors at all. The fact it doesn't occur with editing a quick start seems to line up, as they wouldn't have such things. |
|
I found the player log file and have uploaded it. I looked through the ArcenDebuggerLog, I encountered the CTD on 7/17 and found no exceptions there. I had trouble parsing it and I'm not sure how helpful it will be, but I've included it. I believe there were three or four CTDs and one time when I loaded the custom game successfully after having selected a quick start game and edited it. I have the expansion loaded and I have not personally installed any mods, though I did notice there was a mod for a spire shop in the settings. It said "disabled" in a greyed out box so I assumed it was not automatically enabled. I never intentionally had it in my lobby or any game. The last game I set was a Spire campaign with only an AI, the Spire faction, and Humans enabled and the DLC is still enabled. |
|
Ah, okay, I think I see what is happening here. This is the relevant code for the crash, and it's actually super informative for me (yay when that happens), but only because I've been so embedded in this section of the code lately. The problem: 0x00007FF84E769F53 (UnityPlayer) AsyncUploadManager::TimeSlicedUpdate 0x00007FF84E84A699 (UnityPlayer) PreloadManager::UpdatePreloadingSingleStep 0x00007FF84E84AA08 (UnityPlayer) PreloadManager::WaitForAllAsyncOperationsToComplete 0x00007FF84E33E7B1 (UnityPlayer) AssetBundleLoadAssetOperation::GetLoadedAssets 0x00007FF84E33E72C (UnityPlayer) AssetBundleLoadAssetOperation::GetLoadedAsset 0x00007FF84E3FB1BB (UnityPlayer) AssetBundleRequest_Get_Custom_PropAsset 0x000001E51186E803 (Mono JIT Code) (wrapper managed-to-native) UnityEngine.AssetBundleRequest:get_asset (UnityEngine.AssetBundleRequest) 0x000001E56214D58B (Mono JIT Code) Arcen.AIW2.Core.GameEntityTypeData:Helper_CheckEntityTypeFactionVisualData (Arcen.AIW2.Core.EntityTypeFactionVisualData) Essentially, some of the async loading of assets fails, randomly and only one at a time (out of thousands) on every OS, and it's some sort of bug in unity. On most systems, just checking to see if the asset was there would get a "yes," and I could then load it from the async loader despite it being not-complete. The really annoying thing is that that is slooooow. It can cause a 10 second freeze of the game. It happens when loading any game or going into a quickstart or a custom game, because that's when I'm checking to make sure all the async stuff finished loading. This is all pretty new code, and different systems respond to it pretty differently. I was already tempted to use a different approach for the "failed to load" items, given the super slow loading of them with the approach I used for now to work around unity's bug, but now that I see this error happening in the exact piece of "it failed to load, get it anyway" code, that makes it even more important. I can solve that by just having it give up on that one async file and load the file using the super battle-tested synchronous code, which will probably be a speed boost for everyone, and a lack of a crash for you. |
|
Thanks! * Since we started using the asynchronous loading of asset bundle items using unity (the last few weeks), there have been some intermittent problems with certain random items not loading in properly. This is some sort of funky bug in Unity, we're pretty positive. ** We solved that problem a week or so ago by checking the async request's asset property, and if it was not invalid, forcing it to finish loading even though it was stuck. ** On most machines, this was causing a really annoying lag of 10-25 seconds while Unity did whatever it was doing to finish that load. That was really annoying, but only happened the first time you loaded a savegame or quickstart or custom lobby after starting the program, and not every run of the program, and not on all machines. ** More recently, we discovered that the very act of checking the async request's asset property would cause an unrecoverable error deep in unity and an immediate crash to the desktop. ** Killing two birds with one stone, we're no longer checking the async request asset property at all -- thus avoiding the crash -- and instead just do a normal synchronous load when we detect a failed load. This leaves the one async request in limbo kind of forever, but that shouldn't be a problem; if it ever decides to complete, it will see that it was already completed and just do nothing. ** In the meantime, not only should this avoid the crash, but it should also avoid that awful lag spike that happened for those for whom it didn't crash. ** The downside is that on our dev computers we haven't been able to replicate the error at all today, so we can't verify that this 100% works. It should work, and you should see in the arcen debugging log slightly differently that says "PrototypeObject failed async load and so loaded synchronously for [some stuff] (this is not a problem, but is odd)" *** If you're one of the people who were frequently seeing either the crash, or seeing the older "PrototypeObject fixed and loaded late for [some stuff] (this is not a problem, but is odd)" message, then we'd love to have a confirmation of you seeing the new message and all being well. |
|
Hi Chris As I'm one of the people who gets that funny business guaranteed, I quickly loaded up a game on the new version and checked my debug log for you. (Load time was about the same as it has been for first loads since the last fix.) I attached the log, as the relevant section is a little long. |
|
(That's for what would have been the whole ( Wormholes Missing thing which became PrototypeObject fixed and loaded late for whatever specific one.) |
|
Just loaded up the game to check, the crash didn't happen and the custom game loaded up quick. There was a slight hang and reload of the map whenever changing starting planet position, but it was very short. I didn't get the message you said I ought to, so I've included the file. Relevant portions are at the very bottom. Thank you for the work you do, Bughunter o7 |
|
Lord of Nothing: wow, it's loading what looks like practically every ship synchronously rather than async. I don't know what that's about. What is most strange is that your logs used to just show one random item. I wonder if this is what was always happening, but basically once a single asset was triggered to load, the rest all kind of then flip and then loaded. For people in a circumstance like you, it seems like going back to the old synchronous loading as an option might be appealing; it seems non-urgent in the short term, but like it might be a nice then QOL-wise later. Sol: my pleasure, and that's very interesting that you didn't get the message at all. I'm honestly surprised. It looks from here like the normal async stuff just randomly started working and my fix hasn't actually been relevant yet for you. Hopefully as you start the program more times in the future, we don't run into any problems. Cheers! |
|
Lord of Nothing: Could you have your DXDiag? I'd be interested to see the setup that Unity(?) seems to be having issues with. I'm not a dev tho, it's purely for my own interest. No worries if you don't have the time. |
|
This has been happening the last few versions, but as of the current one (2.104), I am still suffering from the same problem. I click the custom game button, it hangs, an "Error has occurred: Close the program?" window pops up, and I close it. For the last crash (at the bottom of the debug log), that's the only time a Unity window appeared. ArcenDebugLog-4.txt (125,492 bytes)
7/21/2020 8:50:00 PM Current directory used: C:/Program Files (x86)/Steam/steamapps/common/AI War 2/ Process Count = 0 so PlayerDataDirectory used: C:/Program Files (x86)/Steam/steamapps/common/AI War 2/PlayerData/ 7/21/2020 8:50:00 PM Boot up FleetOS (0.7328s) 7/21/2020 8:50:04 PM graphicsDeviceType in use: Direct3D11 graphicsDeviceVersion in use: Direct3D 11.0 [level 11.0] graphicsMultiThreaded: True graphicsShaderLevel: 50 operatingSystem: Windows 8.1 (6.3.0) 64bit graphicsDeviceName: Intel(R) HD Graphics 4000 graphicsDeviceID: 358 graphicsDeviceVendor: Intel graphicsDeviceVendorID: 32902 graphicsDeviceVersion: Direct3D 11.0 [level 11.0] graphicsMemorySize: 912 maxTextureSize: 16384 npotSupport: Full processorType: Intel(R) Core(TM) i5-3230M CPU @ 2.60GHz processorCount: 4 processorFrequency: 2594 systemMemorySize: 8081 supportedRenderTargetCount: 8 supportsComputeShaders: True supportsShadows: True usesReversedZBuffer: True 7/21/2020 8:50:04 PM Check System Logs For Rogue Intelligence (3.6363s) 7/21/2020 8:50:05 PM Game Version: 2.104 7/21/2020 8:50:05 PM Eject Trash Into Hyperspace (0.7757s) 7/21/2020 8:50:05 PM Check For Extra Modules (0.1017s) 7/21/2020 8:50:05 PM Bring Cloaking Systems Online (0.4900s) 7/21/2020 8:50:06 PM Recalculate Speed Of Light (0.2567s) 7/21/2020 8:50:06 PM Optimize Comfort On Command Decks (0.1005s) 7/21/2020 8:50:06 PM Generating Framerates (0.0912s) 7/21/2020 8:50:06 PM Expansions: The Spire Rises (Installed And Enabled!) Zenith Onslaught (Installed And Enabled!) 7/21/2020 8:50:06 PM Mods: SpireRailgunShop (Disabled) 7/21/2020 8:50:07 PM Check Nearby Stellar Masses (0.6437s) 7/21/2020 8:50:07 PM Remembering Alamo (0.2073s) 7/21/2020 8:50:07 PM Boot Audio Comms (0.0789s) 7/21/2020 8:50:07 PM Establish Individual Audio Links (0.0952s) 7/21/2020 8:50:07 PM Prepare Explosions and Crackles (0.1286s) 7/21/2020 8:50:07 PM No resolution change was required. 7/21/2020 8:50:07 PM Applied graphics settings: AntialiasingMode:x2 UseSoftParticles:False BillboardsFaceCameraPosition:False AnisotropicMode:ForceEnable TextureQuality:Full 7/21/2020 8:50:07 PM Applied Framerate Type: 30 FPS (vsync: 0 targetFPS:30) 7/21/2020 8:50:07 PM Refresh Optical Lensing (0.0170s) 7/21/2020 8:50:07 PM Revise Fundamental Physical Laws (0.0481s) 7/21/2020 8:50:08 PM Calculate Odds Of Success (0.8424s) 7/21/2020 8:50:17 PM Briefly Panic (9.3670s) 7/21/2020 8:50:18 PM Install Confidence Routines (0.5467s) 7/21/2020 8:50:19 PM Bring Commander Interface Online (0.8557s) 7/21/2020 8:50:19 PM Motivate All Crews (0.1746s) 7/21/2020 8:50:19 PM Locating Available Networks (0.3933s) 7/21/2020 8:50:19 PM Externalizing Patterns (0.1246s) 7/21/2020 8:50:20 PM Hooking Externals (0.1468s) 7/21/2020 8:50:20 PM Handlizing Hooks (0.0438s) 7/21/2020 8:50:20 PM Disengaging Constants (0.6537s) 7/21/2020 8:50:21 PM Late Axionic Computations (0.6058s) 7/21/2020 8:50:21 PM Connecting to Fleet Command (0.0530s) 7/21/2020 8:50:21 PM Thinking Of Advice (0.0695s) 7/21/2020 8:50:22 PM Degaussing Advice (0.6147s) 7/21/2020 8:50:22 PM Reading Alien Diaries (0.3578s) 7/21/2020 8:50:22 PM Naming All Known Planets (0.0737s) 7/21/2020 8:50:22 PM Remembering Speeds (0.0431s) 7/21/2020 8:50:22 PM Prioritizing Targets (0.0776s) 7/21/2020 8:50:22 PM Rebooting Sensor Arrays (0.0421s) 7/21/2020 8:50:22 PM Unloading Prismatic Grid (0.1038s) 7/21/2020 8:50:22 PM Thinking Of Objectives (0.0952s) 7/21/2020 8:50:22 PM Re-Aligning Objectives (0.0475s) 7/21/2020 8:50:23 PM Inhibiting Visual Scans (0.1109s) 7/21/2020 8:50:23 PM Synthesizing Vocals (0.0334s) 7/21/2020 8:50:23 PM Investigating Map Signatures (0.2323s) 7/21/2020 8:50:23 PM Ventilating Scenarios (0.0698s) 7/21/2020 8:50:23 PM Decontaminating Targeting Systems (0.0364s) 7/21/2020 8:50:23 PM Ejecting Tactical Core (0.0432s) 7/21/2020 8:50:23 PM Calibrating Formations (0.0854s) 7/21/2020 8:50:23 PM Intercepting Galactic Maps (0.0484s) 7/21/2020 8:50:23 PM Discharging Colored Ions (0.0662s) 7/21/2020 8:50:23 PM Replicating Ion Colors (0.0372s) 7/21/2020 8:50:23 PM Faction Diagnostics (0.1920s) 7/21/2020 8:50:24 PM Buffering Hackers (0.1673s) 7/21/2020 8:50:24 PM Inverting Death (0.1237s) 7/21/2020 8:50:24 PM Linear Field Variance (0.1128s) 7/21/2020 8:50:24 PM Charging Marks (0.0391s) 7/21/2020 8:50:24 PM Guarding The Posts (0.2082s) 7/21/2020 8:50:24 PM Range Manifolds (0.0332s) 7/21/2020 8:50:24 PM Purging ROFs (0.0572s) 7/21/2020 8:50:24 PM Manipulating Speeds (0.0503s) 7/21/2020 8:50:24 PM Detecting Projectiles (0.0340s) 7/21/2020 8:50:24 PM Grouping Flow Fields (0.0804s) 7/21/2020 8:50:24 PM Modulating Flow Field Groups (0.1258s) 7/21/2020 8:50:25 PM Designing Fleets (0.2019s) 7/21/2020 8:50:25 PM Thinking Of Technologies (0.1767s) 7/21/2020 8:50:25 PM Categorizing Starboard Sensors (0.0551s) 7/21/2020 8:50:25 PM Injecting Galactic Variables (0.1814s) 7/21/2020 8:50:25 PM Gazing Into Starfields (0.1924s) 7/21/2020 8:50:28 PM Ejecting Distant Planets (2.8798s) 7/21/2020 8:50:28 PM Categorizing All Planets (0.0834s) 7/21/2020 8:50:28 PM Organizing Commands (0.0713s) 7/21/2020 8:50:28 PM Calculating Firing Cones (0.0160s) 7/21/2020 8:50:31 PM Ejecting Ship Parts Into Space (3.0360s) 7/21/2020 8:50:32 PM Sterilizing Test Chamber (0.1739s) 7/21/2020 8:50:45 PM Compensate for Neutrino Variance (13.6565s) 7/21/2020 8:50:45 PM Issuing Orders (0.0440s) 7/21/2020 8:50:45 PM Augmenting Infusers (0.0821s) 7/21/2020 8:50:46 PM Infusing (0.6578s) 7/21/2020 8:50:46 PM Post-Proton Surge (0.0190s) 7/21/2020 8:50:46 PM Stimulate Modulation (0.0711s) 7/21/2020 8:50:48 PM ArcenAssetBundleCache.InstantiatedObjects: 526 7/21/2020 8:50:48 PM Load Surrogates (1.5433s) 7/21/2020 8:50:51 PM Final Checks (3.7251s) 7/21/2020 8:50:51 PM Load Historical Documents (0.0324s) 7/21/2020 8:50:51 PM 51.7 seconds total load time. Boot up FleetOS (0.7s) Check System Logs For Rogue Intelligence (3.6s) Eject Trash Into Hyperspace (0.8s) Bring Cloaking Systems Online (0.5s) Recalculate Speed Of Light (0.3s) Check Nearby Stellar Masses (0.6s) Calculate Odds Of Success (0.8s) Briefly Panic (9.4s) Install Confidence Routines (0.5s) Bring Commander Interface Online (0.9s) Locating Available Networks (0.4s) Disengaging Constants (0.7s) Late Axionic Computations (0.6s) Degaussing Advice (0.6s) Reading Alien Diaries (0.4s) Ejecting Distant Planets (2.9s) Ejecting Ship Parts Into Space (3.0s) Compensate for Neutrino Variance (13.7s) Infusing (0.7s) Load Surrogates (1.5s) Final Checks (3.7s) 7/21/2020 8:51:09 PM Hello Steam user 'Ovalcircle' 7/21/2020 8:51:22 PM Start load save: C:/Program Files (x86)/Steam/steamapps/common/AI War 2/PlayerData/Save/_Internal/LastLobbySettings.save Source1: StartingTheLobbyFromPrior Source3: LoadingLastLobbySettings 7/21/2020 8:51:27 PM PlayerAccount Ovalcircle has now been put in control of faction 1. 7/21/2020 8:51:27 PM Clear out factions that should not be in UI based on savegame: 11 Macrophage Infestation - Tamed Scourge Human Resistance Fighters Marauders Fallen Spire Devourer Golem Outguard Anti-Player Zombie Anti-Everyone Zombie Anti-AI Zombie AI Reserves 7/21/2020 8:51:27 PM Added the faction AIReserves. 7/21/2020 8:51:27 PM Added the faction AntiAIZombie. 7/21/2020 8:51:27 PM Added the faction AntiEveryoneZombie. 7/21/2020 8:51:27 PM Added the faction AntiPlayerZombie. 7/21/2020 8:51:27 PM Added the faction Mercenary. 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AISpireThoraxianWarrior' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Scourge/ThoraxianParts/ThoraxianSpire/ThoraxianSpireWarrior.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AISpireWarrior' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Scourge/SpireParts/SpireWarrior.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AISubjugator' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Scourge/ScourgeSubjugator/ScourgeSubjugator.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AISubverterTurret' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Turrets/SubverterTurret/SubverterTurret.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AITachyonArray' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/turrets/tachyonarray/tachyonarray.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AIThoraxianNeinzulWarrior' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Scourge/ThoraxianParts/ThoraxianNeinzul/ThoraxianNeinzulWarrior.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AIThoraxianWarrior' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Scourge/ThoraxianParts/ThoraxianWarrior.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AITranslocatorTurret' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Turrets/TranslocatorTurret/TranslocatorTurret.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AITritiumSniperTurret' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/turrets/sniperturret/sniperturret.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AIVampireTurret' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Turrets/VampireTurret/VampireTurret.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AIWarrior' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Scourge/ScourgeWarrior/ScourgeWarrior.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AlarmPost' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/aibuildings/alarmpost/alarmpost.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'Ambush' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/ambush.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'Anomaly' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Nanocaust/BomberAnomaly/BomberAnomaly.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AntagonizedDysonSphereGolem' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/aibuildings/dysonwarpgate.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AntiShieldPulsarTank' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/spacetank2/spacetank2.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AnvilSecuritiesForcefieldFrigate' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/starships/shieldstarship/shieldstarship.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AnvilSecuritiesSpider' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/spider/spider.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'ArchitraveBustuarius' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/arks/arkthanatos/arkthanatos.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'ArchitraveCastra' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/Nucleophilic/GuardPostNucleophilic.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'ArchitraveDimachaerus' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/fighter/fighterold.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'ArchitraveEques' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/sniperguardian/sniperguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'ArchitraveHoplomachus' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Guardians/SpiderAndParalysisGuardian/ParalysisGuardian.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'ArchitraveParmularius' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/laserguardian/laserguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'ArchitravePioneer' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Zenith/Dyson3Bulwark/DysonBulwark.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'ArchitraveRetiarius' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/TractorGuardian/TractorGuardian.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'ArchitraveScutarius' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/stealthguardian/stealthguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'ArchitraveThraex' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/starships/prototypeflagship/prototypeflagship.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'ArkOne' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/arks/arkone/arkone.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'ArmorPiercingShell' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/armorpiercingshell.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AstroTrainCarrierStyle' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Specials/AstroTrain/AstroTrainCarrierStyle.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AstroTrainDepot' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/structures/ai/astrotraindepot.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AstroTrainDepotVanguard' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/armorship/armorship.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AstroTrainRaider' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/raider/raider.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AstroTrainStation' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/resources/fuelrefinery/fuelrefinery.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AstroTrainTankStyle' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Specials/AstroTrain/AstroTrainTankStyle.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AstroTrainWithRegularWeapons' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Specials/AstroTrain/AstroTrainWithRegularWeapons.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AutoBomb' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/FleetShips/AutoBomb/AutoBomb.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AutocannonMinipod' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/autocannon_minipod/autocannon_minipod.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AutomatedConstructionBot' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/tachyonmicrofighter/tachyonmicrofighter.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AutomatedMetabolizingGangsaw' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/vorticularcutlass/vorticularcutlass.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AutomatedSentinelGunboat' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/sentinelfrigate/sentinelfrigate.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'AutomatedSniper' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/sniper/sniper.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'BackdoorCombatFactory' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/humanbuildings/spacedock/spacedock.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'BastilleTurret' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Turrets/BastilleTurret/BastilleTurret.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'BellePrime' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Arks/Belle Prime/BellePrime.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'BlackHoleMachine' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/aibuildings/blackholemachine/blackholemachine.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'Bombard' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Strikecraft/Bombard/Bombard.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'Builder' fornaturalobjects:False from filename exp1_the_spire_rises.assets/_dlc1/scourge/scourgebuilder/scourgebuilder.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'BulwarkTurret' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Turrets/BulwarkTurret/BulwarkTurret.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'CarrierGuardian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/carrierguardian/carrierguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'ChrisTest_humancommandstation' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/buildings/commandstations/humancommandstation/humancommandstation.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'ChrisTest_Usurper' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/aibuildings/usurper/usurper.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'CombatEngineer' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/specials/engineer/engineer.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'CommunicationNode' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/humanoddities/scout/scout.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'ConcussionCorvette' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/missilecorvette/missilecorvette.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'ConcussionGuardian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/missileguardian/missileguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'ConcussionGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/Concussion/GuardPostConcussion.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'Coprocessor' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/aibuildings/coprocessora/coprocessor.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'CrusherTurret' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Turrets/CrusherTurret/CrusherTurret.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'Custodian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/shieldguardian/shieldguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'Dark Zenith Beacon' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/aibuildings/ruinednetworknode/ruinednetworknode.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DarkSpirePhantom' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Spire/DarkSpirePhantom/DarkSpirePhantom.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DarkSpireSpecter' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Spire/DarkSpireSpecter/DarkSpireSpecter.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DarkSpireVengeanceGenerator' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Spire/DarkSpireVG/DarkSpireVG.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DarkSpireWard' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Spire/DarkSpireWard/DarkSpireWard.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DarkSpireWraith' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Spire/DarkSpireWraith/DarkSpireWraith.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DataCenter' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/aibuildings/datacenter/data_center.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DeathgripTackleDrone' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Strikecraft/TackleDrone/TackleDrone.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'Devestator' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/starships/siegestarship/siege_starship.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'Deviant' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Nanocaust/MissileCorvetteDeviant/MissileCorvetteDeviant.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DevourerGolem' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/golems/devourergolem/devourergolem.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DevourerShot' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/devourershot.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DevourerShot_Nemesis' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/devourershot_nemesis.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DireConcussionGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/DireConcussion/DireConcussionGuardPost.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DireFragmentingGuardian' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Guardians/FragmentingGuardianAlt/FragmentingGuardian.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DireGravityGuardian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/gravityguardian/gravityguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DireGravityGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/DireGravityGuardPost/DireGravityGuardPost.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DireGrenadeLauncherGuardian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/flakguardian/flakguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DireHeavyBeamGuardian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/heavybeamguardian/heavybeamguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DireHeavyBeamGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/DireHeavyBeamGuardPost/DireHeavyBeamGuardPost.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DireMLRSGuardian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/mlrsguardian/mlrsguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DireNucleophilicGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/DireNucleophilic/DireNucleophilicGuardPost.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DireParalysisGuardian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/widowguardian/widowguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DireParasiteGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/DireParasiteGuardPost/DireParasiteGuardPost.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DirePikeGuardian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/needlerguardian/needlerguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DirePlasmaGuardian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/plasmaguardian/plasmaguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DireSabotGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/DireSabot/DireGuardPostSabot.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DireShredderGuardian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/direshredderguardian/direshredderguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DireShredderGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/DireShredderGuardPost/DireShredderGuardPost.prefab (this is not a problem, but is odd) 7/21/2020 8:51:46 PM PrototypeObject failed async load and so loaded synchronously for 'DireSpiderGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/DireSpider/DireSpiderGuardPost.prefab (this is not a problem, but is odd) 7/21/2020 8:51:47 PM PrototypeObject failed async load and so loaded synchronously for 'DireTantrumingGuardian' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Guardians/FragmentingGuardian/TantrumingGuardian.prefab (this is not a problem, but is odd) 7/21/2020 8:51:47 PM PrototypeObject failed async load and so loaded synchronously for 'DireTemperamentalGuardian' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Guardians/FragmentingGuardian/TemperamentalGuardian.prefab (this is not a problem, but is odd) 7/21/2020 8:51:48 PM PrototypeObject failed async load and so loaded synchronously for 'DireTeslaGuardian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/lightningguardian/lightningguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:51:48 PM PrototypeObject failed async load and so loaded synchronously for 'DireTeslaGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/DireTesla/DireTeslaGuardPost.prefab (this is not a problem, but is odd) 7/21/2020 8:51:48 PM PrototypeObject failed async load and so loaded synchronously for 'DireTethuidaGuardian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/direteuthidaguardian/direteuthidaguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:51:49 PM PrototypeObject failed async load and so loaded synchronously for 'DireTethuidaGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/DireTethuidaGuardPost/DireTethuidaGuardPost.prefab (this is not a problem, but is odd) 7/21/2020 8:51:49 PM PrototypeObject failed async load and so loaded synchronously for 'DireVampireGuardian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/vampireguardian/vampireguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:51:50 PM PrototypeObject failed async load and so loaded synchronously for 'DistributionNode' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/DistributionAndInstigator/DistributionNode.prefab (this is not a problem, but is odd) 7/21/2020 8:51:50 PM PrototypeObject failed async load and so loaded synchronously for 'DoubleShot_Blue' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/doubleshot_blue.prefab (this is not a problem, but is odd) 7/21/2020 8:51:50 PM PrototypeObject failed async load and so loaded synchronously for 'DoubleShot_Gold' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/doubleshot_gold.prefab (this is not a problem, but is odd) 7/21/2020 8:51:50 PM PrototypeObject failed async load and so loaded synchronously for 'DoubleShot_Green' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/doubleshot_green.prefab (this is not a problem, but is odd) 7/21/2020 8:51:50 PM PrototypeObject failed async load and so loaded synchronously for 'DoubleShot_Red' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/doubleshot_red.prefab (this is not a problem, but is odd) 7/21/2020 8:51:51 PM PrototypeObject failed async load and so loaded synchronously for 'Drone MLRS' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/mlrscorvette/mlrscorvette.prefab (this is not a problem, but is odd) 7/21/2020 8:51:51 PM PrototypeObject failed async load and so loaded synchronously for 'DroneFusionBomber' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/bomber/bomber.prefab (this is not a problem, but is odd) 7/21/2020 8:51:51 PM PrototypeObject failed async load and so loaded synchronously for 'DroneStingray' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/FleetShips/Stingray/Stringray.prefab (this is not a problem, but is odd) 7/21/2020 8:51:51 PM PrototypeObject failed async load and so loaded synchronously for 'DysonAntagonizer' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/DysonAntagonizer/DysonAntagonizer.prefab (this is not a problem, but is odd) 7/21/2020 8:51:51 PM PrototypeObject failed async load and so loaded synchronously for 'DysonDefender' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Zenith/Dyson2Defender/DysonDefender.prefab (this is not a problem, but is odd) 7/21/2020 8:51:51 PM PrototypeObject failed async load and so loaded synchronously for 'DysonSentinel' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Zenith/Dyson1Sentinel/DysonSentinel.prefab (this is not a problem, but is odd) 7/21/2020 8:51:52 PM PrototypeObject failed async load and so loaded synchronously for 'DZBlackTerminus' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Scourge/ScourgeSpawner/ScourgeSpawner.prefab (this is not a problem, but is odd) 7/21/2020 8:51:52 PM PrototypeObject failed async load and so loaded synchronously for 'DZDreng' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/implosionguardian/implosionguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:51:53 PM PrototypeObject failed async load and so loaded synchronously for 'DZEpistyle' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Scourge/ScourgeArmory/ScourgeArmory.prefab (this is not a problem, but is odd) 7/21/2020 8:51:53 PM PrototypeObject failed async load and so loaded synchronously for 'EconomicCommandStation' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/buildings/commandstations/economiccommandstation/economiccommandstation.prefab (this is not a problem, but is odd) 7/21/2020 8:51:53 PM PrototypeObject failed async load and so loaded synchronously for 'ElegantCurl' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/elegantcurl.prefab (this is not a problem, but is odd) 7/21/2020 8:51:54 PM PrototypeObject failed async load and so loaded synchronously for 'EMPTurret' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Turrets/EMPTurret/EMPTurret.prefab (this is not a problem, but is odd) 7/21/2020 8:51:54 PM PrototypeObject failed async load and so loaded synchronously for 'EnergyWave' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/energywave.prefab (this is not a problem, but is odd) 7/21/2020 8:51:54 PM PrototypeObject failed async load and so loaded synchronously for 'EngineDisruptingShell' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/enginedisruptingshell.prefab (this is not a problem, but is odd) 7/21/2020 8:51:54 PM PrototypeObject failed async load and so loaded synchronously for 'EngineeringBattlestation' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/aibuildings/experimentalfabricator/experimental_fabricator.prefab (this is not a problem, but is odd) 7/21/2020 8:51:55 PM PrototypeObject failed async load and so loaded synchronously for 'EnsnarerEtherjet' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/etherjettractor/etherjettractor.prefab (this is not a problem, but is odd) 7/21/2020 8:51:55 PM PrototypeObject failed async load and so loaded synchronously for 'EnsnarerFocusedGravityGenerator' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/buildings/focusedgravitygenerator/focusedgravitygenerator.prefab (this is not a problem, but is odd) 7/21/2020 8:51:56 PM PrototypeObject failed async load and so loaded synchronously for 'EnsnarerTractorArray' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/turrets/tractorturret/tractor_turret.prefab (this is not a problem, but is odd) 7/21/2020 8:51:56 PM PrototypeObject failed async load and so loaded synchronously for 'EvuckPeltianWarrior' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Scourge/EvuckParts/EvuckPeltian/EvuckPeltianWarrior.prefab (this is not a problem, but is odd) 7/21/2020 8:51:56 PM PrototypeObject failed async load and so loaded synchronously for 'ExogalacticWormhole' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/ExoGalacticWormhole.prefab (this is not a problem, but is odd) 7/21/2020 8:51:56 PM PrototypeObject failed async load and so loaded synchronously for 'ExplosiveInvisible' fornaturalobjects:False from filename aiw2_lines_shots.assets/visualshotsandlines/shots/simplebulletsbyspeed/invisiblebullet.prefab (this is not a problem, but is odd) 7/21/2020 8:51:57 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticAIHunterAnnihilator' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier3_ExtragalacticAIHunterAnnihilator/Tier3_ExtragalacticAIHunterAnnihilator.prefab (this is not a problem, but is odd) 7/21/2020 8:51:57 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticAIHunterSeeker' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier1_ExtragalacticHunterSeeker/Tier1_ExtragalacticHunterSeeker.prefab (this is not a problem, but is odd) 7/21/2020 8:51:57 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticChimera' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier2_ExtragalacticWarspite/Tier2_ExtragalacticWarspite.prefab (this is not a problem, but is odd) 7/21/2020 8:51:57 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticChimeraArtillery' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier2_ExtragalacticWarspiteArtillery/Tier2_ExtragalacticWarspiteArtillery.prefab (this is not a problem, but is odd) 7/21/2020 8:51:58 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticFlenser' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier5_ExtragalacticFlenser/Tier5_ExtragalacticFlenser.prefab (this is not a problem, but is odd) 7/21/2020 8:51:58 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticJackalope' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier3_ExtragalacticWarSlicerFrigate/Tier3_ExtragalacticWarSlicerFrigate.prefab (this is not a problem, but is odd) 7/21/2020 8:51:59 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticMaugrim' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier1_ExtragalacticMaugrim/Tier1_ExtragalacticMaugrim.prefab (this is not a problem, but is odd) 7/21/2020 8:52:00 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticMothership' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier4_ExtragalacticMothership/Tier4_ExtragalacticMothership.prefab (this is not a problem, but is odd) 7/21/2020 8:52:00 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticPhoenix' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier1_ExtralacticRaven/Tier1_ExtralacticRaven.prefab (this is not a problem, but is odd) 7/21/2020 8:52:00 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticPlanetCracker' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier4_ExtragalacticPlanetCracker/Tier4_ExtragalacticPlanetCracker.prefab (this is not a problem, but is odd) 7/21/2020 8:52:01 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticPoltergeist' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier1_ExtragalacticTrespasser/Tier1_ExtragalacticTrespasser.prefab (this is not a problem, but is odd) 7/21/2020 8:52:01 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticThunderbird' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier3_ExtragalacticCommandDeck/Tier3_ExtragalacticCommandDeck.prefab (this is not a problem, but is odd) 7/21/2020 8:52:01 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticWendigo' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier2_ExtragalacticReanimator/Tier2_ExtragalacticReanimator.prefab (this is not a problem, but is odd) 7/21/2020 8:52:02 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticWyrm' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier2_ExtragalacticShellshocker/Tier2_ExtragalacticShellshocker.prefab (this is not a problem, but is odd) 7/21/2020 8:52:02 PM PrototypeObject failed async load and so loaded synchronously for 'ExtremeLongRangeRailgun' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/extremelongrangerailgun.prefab (this is not a problem, but is odd) 7/21/2020 8:52:02 PM PrototypeObject failed async load and so loaded synchronously for 'ExtremelyLongRangeIon' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/extremelylongrangeion.prefab (this is not a problem, but is odd) 7/21/2020 8:52:02 PM PrototypeObject failed async load and so loaded synchronously for 'Eyebot' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/eyebot/eyebot.prefab (this is not a problem, but is odd) 7/21/2020 8:52:02 PM PrototypeObject failed async load and so loaded synchronously for 'FlakShotAOEBurstAtEnd' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/flakshot.prefab (this is not a problem, but is odd) 7/21/2020 8:52:02 PM PrototypeObject failed async load and so loaded synchronously for 'FleetCapacityExtender' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/aibuildings/advancedresearchstation/fleetcapacityextender.prefab (this is not a problem, but is odd) 7/21/2020 8:52:03 PM PrototypeObject failed async load and so loaded synchronously for 'FortifiedDataCenter' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/aibuildings/datacenter/fortifieddatacenter.prefab (this is not a problem, but is odd) 7/21/2020 8:52:03 PM PrototypeObject failed async load and so loaded synchronously for 'FragmentingGuardianShard' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Guardians/FragmentingGuardianAlt/FragmentingGuardianShard.prefab (this is not a problem, but is odd) 7/21/2020 8:52:03 PM PrototypeObject failed async load and so loaded synchronously for 'FusionBolt' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/plasmabolt_fusion.prefab (this is not a problem, but is odd) 7/21/2020 8:52:03 PM PrototypeObject failed async load and so loaded synchronously for 'FusionBomb' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/fusionbomb.prefab (this is not a problem, but is odd) 7/21/2020 8:52:03 PM PrototypeObject failed async load and so loaded synchronously for 'FusionBomb_Agravic' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/fusionbomb_agravic.prefab (this is not a problem, but is odd) 7/21/2020 8:52:03 PM PrototypeObject failed async load and so loaded synchronously for 'FusionBomb_Viral' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/fusionbomb_viral.prefab (this is not a problem, but is odd) 7/21/2020 8:52:03 PM PrototypeObject failed async load and so loaded synchronously for 'FusionRocket' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/fusionrocket.prefab (this is not a problem, but is odd) 7/21/2020 8:52:04 PM PrototypeObject failed async load and so loaded synchronously for 'GhostGrenadeLauncherCorvette' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/grenadelauncher2/grenadelauncher2.prefab (this is not a problem, but is odd) 7/21/2020 8:52:04 PM PrototypeObject failed async load and so loaded synchronously for 'GhostMLRSGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/MLRS/GuardPostMLRS.prefab (this is not a problem, but is odd) 7/21/2020 8:52:04 PM PrototypeObject failed async load and so loaded synchronously for 'GhostPikeGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/Pike/GuardPostPike.prefab (this is not a problem, but is odd) 7/21/2020 8:52:04 PM PrototypeObject failed async load and so loaded synchronously for 'GhostSabotGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/Sabot/GuardPostSabot.prefab (this is not a problem, but is odd) 7/21/2020 8:52:04 PM PrototypeObject failed async load and so loaded synchronously for 'GhostUnarmedGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/UnderConstruction/GuardPostUnderConstruction.prefab (this is not a problem, but is odd) 7/21/2020 8:52:05 PM PrototypeObject failed async load and so loaded synchronously for 'GlobalCommandAugmenter' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/AdvancedStarshipConstructor/AdvancedStarshipConstructor.prefab (this is not a problem, but is odd) 7/21/2020 8:52:08 PM PrototypeObject failed async load and so loaded synchronously for 'GrandSalvage' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Arks/GrandSalvage/GrandSalvage.prefab (this is not a problem, but is odd) 7/21/2020 8:52:09 PM PrototypeObject failed async load and so loaded synchronously for 'GreatA’Thomek' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Arks/Great A'Thomek/Great A'Thomek.prefab (this is not a problem, but is odd) 7/21/2020 8:52:09 PM PrototypeObject failed async load and so loaded synchronously for 'GreaterSpireFortress' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/FallenSpire/SpireFortressGreater/SpireFortressGreater.prefab (this is not a problem, but is odd) 7/21/2020 8:52:10 PM PrototypeObject failed async load and so loaded synchronously for 'GuidedMissile' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/guidedmissile.prefab (this is not a problem, but is odd) 7/21/2020 8:52:10 PM PrototypeObject failed async load and so loaded synchronously for 'Gyrn' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/arks/arkgyrnthevoidhome/arkgyrnthevoidhome.prefab (this is not a problem, but is odd) 7/21/2020 8:52:11 PM PrototypeObject failed async load and so loaded synchronously for 'HackedMercBeacon' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/resources/reactor/reactor.prefab (this is not a problem, but is odd) 7/21/2020 8:52:12 PM PrototypeObject failed async load and so loaded synchronously for 'HomeHumanSettlement' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/humanoddities/HomeHumanSettlement/HomeHumanSettlement.prefab (this is not a problem, but is odd) 7/21/2020 8:52:12 PM PrototypeObject failed async load and so loaded synchronously for 'HRFPikeCorvette' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/multi_needler_corvette/multi_needler corvette single.prefab (this is not a problem, but is odd) 7/21/2020 8:52:13 PM PrototypeObject failed async load and so loaded synchronously for 'HumanCryogenicPod' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/humanoddities/cryotubes/cryotubes.prefab (this is not a problem, but is odd) 7/21/2020 8:52:13 PM PrototypeObject failed async load and so loaded synchronously for 'HumanHomeCommandStation' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/buildings/commandstations/humanhomecommandstation/humanhomecommandstation.prefab (this is not a problem, but is odd) 7/21/2020 8:52:13 PM PrototypeObject failed async load and so loaded synchronously for 'HumanHomeCommandStationCore' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/buildings/commandstations/humanhomecommandstationcore/humanhomecommandstationcore.prefab (this is not a problem, but is odd) 7/21/2020 8:52:14 PM PrototypeObject failed async load and so loaded synchronously for 'HydraMercFlagship' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/humanoddities/hacker/hacker.prefab (this is not a problem, but is odd) 7/21/2020 8:52:14 PM PrototypeObject failed async load and so loaded synchronously for 'ImperialSpireDreadnought' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/FallenSpire/Spire5Dreadnought/SpireDreadnought.prefab (this is not a problem, but is odd) 7/21/2020 8:52:15 PM PrototypeObject failed async load and so loaded synchronously for 'IncitingParasite' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/FleetShips/Parasite/Parasite.prefab (this is not a problem, but is odd) 7/21/2020 8:52:15 PM PrototypeObject failed async load and so loaded synchronously for 'InhibitingTeslaCorvette' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/LightningCorvette/LightningCorvette.prefab (this is not a problem, but is odd) 7/21/2020 8:52:15 PM PrototypeObject failed async load and so loaded synchronously for 'InstigatorBase' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/DistributionAndInstigator/InstigatorBase.prefab (this is not a problem, but is odd) 7/21/2020 8:52:16 PM PrototypeObject failed async load and so loaded synchronously for 'IntraGalacticCoordinator' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/aibuildings/advancedfactory/advancedfactory.prefab (this is not a problem, but is odd) 7/21/2020 8:52:17 PM PrototypeObject failed async load and so loaded synchronously for 'IonAlertedEye' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Specials/AIEye/AIEyeIonAlerted.prefab (this is not a problem, but is odd) 7/21/2020 8:52:17 PM PrototypeObject failed async load and so loaded synchronously for 'IonCannon' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/turrets/IonCannon/Giant_Turret_Ion_Cannon.prefab (this is not a problem, but is odd) 7/21/2020 8:52:18 PM PrototypeObject failed async load and so loaded synchronously for 'IonEye' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Specials/AIEye/AIEyeIon.prefab (this is not a problem, but is odd) 7/21/2020 8:52:18 PM PrototypeObject failed async load and so loaded synchronously for 'LaserPulse_DeepBlue' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/laserpulse_deepblue.prefab (this is not a problem, but is odd) 7/21/2020 8:52:18 PM PrototypeObject failed async load and so loaded synchronously for 'LaserPulse_Pink' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/laserpulse_pink.prefab (this is not a problem, but is odd) 7/21/2020 8:52:18 PM PrototypeObject failed async load and so loaded synchronously for 'LaserPulse_RedLevel1' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/laserpulse_redlevel1.prefab (this is not a problem, but is odd) 7/21/2020 8:52:18 PM PrototypeObject failed async load and so loaded synchronously for 'LaserPulse_RedLevel2' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/laserpulse_redlevel2.prefab (this is not a problem, but is odd) 7/21/2020 8:52:18 PM PrototypeObject failed async load and so loaded synchronously for 'LaserPulse_RedLevel3' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/laserpulse_redlevel3.prefab (this is not a problem, but is odd) 7/21/2020 8:52:19 PM PrototypeObject failed async load and so loaded synchronously for 'LaserPulse_SicklyGreen' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/laserpulse_sicklygreen.prefab (this is not a problem, but is odd) 7/21/2020 8:52:19 PM PrototypeObject failed async load and so loaded synchronously for 'LesserSpireFortress' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/FallenSpire/SpireFortressLesser/SpireFortressLesser.prefab (this is not a problem, but is odd) 7/21/2020 8:52:20 PM PrototypeObject failed async load and so loaded synchronously for 'LesserZenithPowerGenerator' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/PlanetaryCloaker/PlanetaryCloaker.prefab (this is not a problem, but is odd) 7/21/2020 8:52:20 PM PrototypeObject failed async load and so loaded synchronously for 'LogisticalCommandStation' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/buildings/commandstations/logisticalcommandstation/logisticalcommandstation.prefab (this is not a problem, but is odd) 7/21/2020 8:52:22 PM PrototypeObject failed async load and so loaded synchronously for 'LostEnergyReactor' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/MinorCapturables/LostEnergyReactor/LostEnergyReactor.prefab (this is not a problem, but is odd) 7/21/2020 8:52:22 PM PrototypeObject failed async load and so loaded synchronously for 'MacrophageEnragedHarvester' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Macrophage/Harvester/MacrophageHarvester.prefab (this is not a problem, but is odd) 7/21/2020 8:52:23 PM PrototypeObject failed async load and so loaded synchronously for 'Magnifier' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/aibuildings/magnifier/magnifier.prefab (this is not a problem, but is odd) 7/21/2020 8:52:23 PM PrototypeObject failed async load and so loaded synchronously for 'MajorDataCenter' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/aibuildings/experimentalturretcontroller/experimentalturretcontroller.prefab (this is not a problem, but is odd) 7/21/2020 8:52:24 PM PrototypeObject failed async load and so loaded synchronously for 'Marauder_Drone_Raider' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/implosionguardian/implosionguardiancarrier.prefab (this is not a problem, but is odd) 7/21/2020 8:52:25 PM PrototypeObject failed async load and so loaded synchronously for 'Marauder_Spire_Raider' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/FactionIntegration/MarauderSpireRaider/MarauderSpireRaider.prefab (this is not a problem, but is odd) 7/21/2020 8:52:25 PM PrototypeObject failed async load and so loaded synchronously for 'MarauderOutpost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/HumanOddities/MarauderOutpost/MarauderOutpost.prefab (this is not a problem, but is odd) 7/21/2020 8:52:25 PM PrototypeObject failed async load and so loaded synchronously for 'MassDriver' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/massdriver.prefab (this is not a problem, but is odd) 7/21/2020 8:52:25 PM PrototypeObject failed async load and so loaded synchronously for 'MatterConverter' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/resources/MatterConverter/MatterConverter.prefab (this is not a problem, but is odd) 7/21/2020 8:52:26 PM PrototypeObject failed async load and so loaded synchronously for 'MaugrimDrone' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier1_MaugrimDrone/Tier1_MaugrimDrone.prefab (this is not a problem, but is odd) 7/21/2020 8:52:26 PM PrototypeObject failed async load and so loaded synchronously for 'MercFlagship_Distractor' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/starships/stealthstarship/stealth_starship.prefab (this is not a problem, but is odd) 7/21/2020 8:52:27 PM PrototypeObject failed async load and so loaded synchronously for 'MetalGenerator' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/resources/MetalHarvester/MetalHarvester.prefab (this is not a problem, but is odd) 7/21/2020 8:52:27 PM PrototypeObject failed async load and so loaded synchronously for 'MetalGenerator' fornaturalobjects:True from filename aiwar2goodiebox.assets/_finalgamemeshes/resources/MetalHarvesterEmpty/MetalHarvesterEmpty.prefab (this is not a problem, but is odd) 7/21/2020 8:52:27 PM PrototypeObject failed async load and so loaded synchronously for 'MilitaryCommandStation' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/buildings/commandstations/militarycommandstation/militarycommandstation.prefab (this is not a problem, but is odd) 7/21/2020 8:52:27 PM PrototypeObject failed async load and so loaded synchronously for 'Mirage' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/spaceplane/spaceplane.prefab (this is not a problem, but is odd) 7/21/2020 8:52:27 PM PrototypeObject failed async load and so loaded synchronously for 'Mutation' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Nanocaust/FighterMutation/FighterMutation.prefab (this is not a problem, but is odd) 7/21/2020 8:52:27 PM PrototypeObject failed async load and so loaded synchronously for 'NanobotCenter' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Nanocaust/HiveAndCenterBase/NanobotCenter.prefab (this is not a problem, but is odd) 7/21/2020 8:52:28 PM PrototypeObject failed async load and so loaded synchronously for 'NanobotCenter_Hacked_Hive' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Nanocaust/HiveAndCenterBase/NanobotHive.prefab (this is not a problem, but is odd) 7/21/2020 8:52:28 PM PrototypeObject failed async load and so loaded synchronously for 'NanocaustCurvedSicklyGreenShot' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/nanocaustcurvedsicklygreenshot.prefab (this is not a problem, but is odd) 7/21/2020 8:52:30 PM PrototypeObject failed async load and so loaded synchronously for 'Nemesis' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Scourge/ScourgeNemesis/ScourgeNemesis.prefab (this is not a problem, but is odd) 7/21/2020 8:52:30 PM PrototypeObject failed async load and so loaded synchronously for 'Neophyte' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Scourge/ScourgeNeophyte/ScourgeNeophyte.prefab (this is not a problem, but is odd) 7/21/2020 8:52:33 PM PrototypeObject failed async load and so loaded synchronously for 'NodorianTortoid' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Arks/Nodorian Tortoid/NodorianTortoid.prefab (this is not a problem, but is odd) 7/21/2020 8:52:34 PM PrototypeObject failed async load and so loaded synchronously for 'Obscenity' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/FactionIntegration/NanocaustSpireObscenity/NanocaustSpireObscenity.prefab (this is not a problem, but is odd) 7/21/2020 8:52:35 PM PrototypeObject failed async load and so loaded synchronously for 'OrbitalMassDriver' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/turrets/orbitalmassdriver/Giant_Turret_Orbital_Mass_Driver.prefab (this is not a problem, but is odd) 7/21/2020 8:52:38 PM PrototypeObject failed async load and so loaded synchronously for 'Orchid' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/arks/arktheorchid/arktheorchid.prefab (this is not a problem, but is odd) 7/21/2020 8:52:38 PM PrototypeObject failed async load and so loaded synchronously for 'ParalysisProngedShot_Blue' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/paralysisprongedshot_blue.prefab (this is not a problem, but is odd) 7/21/2020 8:52:39 PM PrototypeObject failed async load and so loaded synchronously for 'ParasiteCurvedPinkShot' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/parasitecurvedpinkshot.prefab (this is not a problem, but is odd) 7/21/2020 8:52:39 PM PrototypeObject failed async load and so loaded synchronously for 'PikeShot_Gold' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/pikeshot_gold.prefab (this is not a problem, but is odd) 7/21/2020 8:52:40 PM PrototypeObject failed async load and so loaded synchronously for 'PlasmaAlertedEye' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Specials/AIEye/AIEyePlasmaAlerted.prefab (this is not a problem, but is odd) 7/21/2020 8:52:40 PM PrototypeObject failed async load and so loaded synchronously for 'PlasmaBolt' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/plasmabolt.prefab (this is not a problem, but is odd) 7/21/2020 8:52:40 PM PrototypeObject failed async load and so loaded synchronously for 'PlasmaEye' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Specials/AIEye/AIEyePlasma.prefab (this is not a problem, but is odd) 7/21/2020 8:52:41 PM PrototypeObject failed async load and so loaded synchronously for 'PlasmaTorpedo' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/plasmatorpedonoexplosion.prefab (this is not a problem, but is odd) 7/21/2020 8:52:41 PM PrototypeObject failed async load and so loaded synchronously for 'PlasmaTorpedoAOEBurstAtEnd' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/plasmatorpedo.prefab (this is not a problem, but is odd) 7/21/2020 8:52:42 PM PrototypeObject failed async load and so loaded synchronously for 'RaidEngine' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/aibuildings/raidengine/raidengine.prefab (this is not a problem, but is odd) 7/21/2020 8:52:43 PM PrototypeObject failed async load and so loaded synchronously for 'Ramifier' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/starships/sniperstarship/sniper_starship.prefab (this is not a problem, but is odd) 7/21/2020 8:52:44 PM PrototypeObject failed async load and so loaded synchronously for 'Raptor' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/raptor/raptor.prefab (this is not a problem, but is odd) 7/21/2020 8:52:45 PM PrototypeObject failed async load and so loaded synchronously for 'ReanimatorDrone' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/teuthidaguardiandrone/teuthidaguardiandrone.prefab (this is not a problem, but is odd) 7/21/2020 8:52:45 PM PrototypeObject failed async load and so loaded synchronously for 'Ripper' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/starships/assaultstarship/assaultstarship.prefab (this is not a problem, but is odd) 7/21/2020 8:52:46 PM PrototypeObject failed async load and so loaded synchronously for 'RiskAnalyzer' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Specials/RiskAnalyzer/RiskAnalyzer.prefab (this is not a problem, but is odd) 7/21/2020 8:52:47 PM PrototypeObject failed async load and so loaded synchronously for 'RorqualHegira' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/arks/arkrorqualhegira/rorqualhegira.prefab (this is not a problem, but is odd) 7/21/2020 8:52:47 PM PrototypeObject failed async load and so loaded synchronously for 'RoyalSpiderGuardian' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Guardians/SpiderAndParalysisGuardian/SpiderGuardian.prefab (this is not a problem, but is odd) 7/21/2020 8:52:48 PM PrototypeObject failed async load and so loaded synchronously for 'Sabot' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/sabot.prefab (this is not a problem, but is odd) 7/21/2020 8:52:48 PM PrototypeObject failed async load and so loaded synchronously for 'ScourgeBurlustFortress' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Scourge/ScourgeFortress/ScourgeFortress_Burlust.prefab (this is not a problem, but is odd) 7/21/2020 8:52:49 PM PrototypeObject failed async load and so loaded synchronously for 'ScourgeEvuckFortress' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Scourge/ScourgeFortress/ScourgeFortress_Evuck.prefab (this is not a problem, but is odd) 7/21/2020 8:52:49 PM PrototypeObject failed async load and so loaded synchronously for 'ScourgeNeinzulFortress' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Scourge/ScourgeFortress/ScourgeFortress_Neinzul.prefab (this is not a problem, but is odd) 7/21/2020 8:52:49 PM PrototypeObject failed async load and so loaded synchronously for 'ScourgePeltianFortress' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Scourge/ScourgeFortress/ScourgeFortress_Peltian.prefab (this is not a problem, but is odd) 7/21/2020 8:52:49 PM PrototypeObject failed async load and so loaded synchronously for 'ScourgeSpireFortress' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Scourge/ScourgeFortress/ScourgeFortress_Spire.prefab (this is not a problem, but is odd) 7/21/2020 8:52:50 PM PrototypeObject failed async load and so loaded synchronously for 'ScourgeThoraxianFortress' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Scourge/ScourgeFortress/ScourgeFortress_Thoraxian.prefab (this is not a problem, but is odd) 7/21/2020 8:52:50 PM PrototypeObject failed async load and so loaded synchronously for 'ShieldGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/Forcefield/GuardPostForcefield.prefab (this is not a problem, but is odd) 7/21/2020 8:52:50 PM PrototypeObject failed async load and so loaded synchronously for 'ShredderDrone' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/shredderguardiandrone/shredderguardiandrone.prefab (this is not a problem, but is odd) 7/21/2020 8:52:51 PM PrototypeObject failed async load and so loaded synchronously for 'SolAter' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Arks/Sol Ater/SolAter.prefab (this is not a problem, but is odd) 7/21/2020 8:52:52 PM PrototypeObject failed async load and so loaded synchronously for 'SpecialForcesSecretNinjaHideout' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/aibuildings/specialforcesguardpost/specialforcesninjahideout.prefab (this is not a problem, but is odd) 7/21/2020 8:52:53 PM PrototypeObject failed async load and so loaded synchronously for 'SpireArchive' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Spire/SpireArchive/SpireArchive.prefab (this is not a problem, but is odd) 7/21/2020 8:53:36 PM Current directory used: C:/Program Files (x86)/Steam/steamapps/common/AI War 2/ Process Count = 0 so PlayerDataDirectory used: C:/Program Files (x86)/Steam/steamapps/common/AI War 2/PlayerData/ 7/21/2020 8:53:36 PM Boot up FleetOS (1.2650s) 7/21/2020 8:53:41 PM graphicsDeviceType in use: Direct3D11 graphicsDeviceVersion in use: Direct3D 11.0 [level 11.0] graphicsMultiThreaded: True graphicsShaderLevel: 50 operatingSystem: Windows 8.1 (6.3.0) 64bit graphicsDeviceName: Intel(R) HD Graphics 4000 graphicsDeviceID: 358 graphicsDeviceVendor: Intel graphicsDeviceVendorID: 32902 graphicsDeviceVersion: Direct3D 11.0 [level 11.0] graphicsMemorySize: 912 maxTextureSize: 16384 npotSupport: Full processorType: Intel(R) Core(TM) i5-3230M CPU @ 2.60GHz processorCount: 4 processorFrequency: 2594 systemMemorySize: 8081 supportedRenderTargetCount: 8 supportsComputeShaders: True supportsShadows: True usesReversedZBuffer: True 7/21/2020 8:53:41 PM Check System Logs For Rogue Intelligence (4.8736s) 7/21/2020 8:53:42 PM Game Version: 2.104 7/21/2020 8:53:42 PM Eject Trash Into Hyperspace (0.5921s) 7/21/2020 8:53:42 PM Check For Extra Modules (0.0881s) 7/21/2020 8:53:42 PM Bring Cloaking Systems Online (0.3122s) 7/21/2020 8:53:42 PM Recalculate Speed Of Light (0.1376s) 7/21/2020 8:53:43 PM Optimize Comfort On Command Decks (0.1613s) 7/21/2020 8:53:43 PM Generating Framerates (0.0476s) 7/21/2020 8:53:43 PM Expansions: The Spire Rises (Installed And Enabled!) Zenith Onslaught (Installed And Enabled!) 7/21/2020 8:53:43 PM Mods: SpireRailgunShop (Disabled) 7/21/2020 8:53:43 PM Check Nearby Stellar Masses (0.7692s) 7/21/2020 8:53:44 PM Remembering Alamo (0.2219s) 7/21/2020 8:53:44 PM Boot Audio Comms (0.0433s) 7/21/2020 8:53:44 PM Establish Individual Audio Links (0.1119s) 7/21/2020 8:53:44 PM Prepare Explosions and Crackles (0.2829s) 7/21/2020 8:53:44 PM No resolution change was required. 7/21/2020 8:53:44 PM Applied graphics settings: AntialiasingMode:x2 UseSoftParticles:False BillboardsFaceCameraPosition:False AnisotropicMode:ForceEnable TextureQuality:Full 7/21/2020 8:53:44 PM Applied Framerate Type: 30 FPS (vsync: 0 targetFPS:30) 7/21/2020 8:53:44 PM Refresh Optical Lensing (0.0466s) 7/21/2020 8:53:44 PM Revise Fundamental Physical Laws (0.0460s) 7/21/2020 8:53:45 PM Calculate Odds Of Success (0.4540s) 7/21/2020 8:53:52 PM Briefly Panic (7.5425s) 7/21/2020 8:53:53 PM Install Confidence Routines (0.4705s) 7/21/2020 8:53:53 PM Bring Commander Interface Online (0.3461s) 7/21/2020 8:53:53 PM Motivate All Crews (0.0961s) 7/21/2020 8:53:53 PM Locating Available Networks (0.1602s) 7/21/2020 8:53:53 PM Externalizing Patterns (0.1085s) 7/21/2020 8:53:53 PM Hooking Externals (0.0632s) 7/21/2020 8:53:53 PM Handlizing Hooks (0.0380s) 7/21/2020 8:53:54 PM Disengaging Constants (0.4141s) 7/21/2020 8:53:55 PM Late Axionic Computations (0.8142s) 7/21/2020 8:53:55 PM Connecting to Fleet Command (0.0202s) 7/21/2020 8:53:55 PM Thinking Of Advice (0.0443s) 7/21/2020 8:53:55 PM Degaussing Advice (0.3786s) 7/21/2020 8:53:55 PM Reading Alien Diaries (0.2105s) 7/21/2020 8:53:55 PM Naming All Known Planets (0.0510s) 7/21/2020 8:53:55 PM Remembering Speeds (0.0261s) 7/21/2020 8:53:55 PM Prioritizing Targets (0.0682s) 7/21/2020 8:53:56 PM Rebooting Sensor Arrays (0.0180s) 7/21/2020 8:53:56 PM Unloading Prismatic Grid (0.0828s) 7/21/2020 8:53:56 PM Thinking Of Objectives (0.0570s) 7/21/2020 8:53:56 PM Re-Aligning Objectives (0.0271s) 7/21/2020 8:53:56 PM Inhibiting Visual Scans (0.0850s) 7/21/2020 8:53:56 PM Synthesizing Vocals (0.0491s) 7/21/2020 8:53:56 PM Investigating Map Signatures (0.1086s) 7/21/2020 8:53:56 PM Ventilating Scenarios (0.0535s) 7/21/2020 8:53:56 PM Decontaminating Targeting Systems (0.0221s) 7/21/2020 8:53:56 PM Ejecting Tactical Core (0.0739s) 7/21/2020 8:53:56 PM Calibrating Formations (0.0240s) 7/21/2020 8:53:56 PM Intercepting Galactic Maps (0.0595s) 7/21/2020 8:53:56 PM Discharging Colored Ions (0.0453s) 7/21/2020 8:53:56 PM Replicating Ion Colors (0.0334s) 7/21/2020 8:53:56 PM Faction Diagnostics (0.1085s) 7/21/2020 8:53:56 PM Buffering Hackers (0.1114s) 7/21/2020 8:53:57 PM Inverting Death (0.0636s) 7/21/2020 8:53:57 PM Linear Field Variance (0.0371s) 7/21/2020 8:53:57 PM Charging Marks (0.0232s) 7/21/2020 8:53:57 PM Guarding The Posts (0.3163s) 7/21/2020 8:53:57 PM Range Manifolds (0.0240s) 7/21/2020 8:53:57 PM Purging ROFs (0.1731s) 7/21/2020 8:53:57 PM Manipulating Speeds (0.0856s) 7/21/2020 8:53:57 PM Detecting Projectiles (0.0120s) 7/21/2020 8:53:57 PM Grouping Flow Fields (0.0957s) 7/21/2020 8:53:57 PM Modulating Flow Field Groups (0.1545s) 7/21/2020 8:53:58 PM Designing Fleets (0.5008s) 7/21/2020 8:53:58 PM Thinking Of Technologies (0.1199s) 7/21/2020 8:53:58 PM Categorizing Starboard Sensors (0.0333s) 7/21/2020 8:53:58 PM Injecting Galactic Variables (0.1042s) 7/21/2020 8:53:58 PM Hoping Starfields Are Nice (0.1004s) 7/21/2020 8:54:01 PM Detecting Distant Planets (3.0611s) 7/21/2020 8:54:01 PM Categorizing All Planets (0.0120s) 7/21/2020 8:54:02 PM Organizing Commands (0.1529s) 7/21/2020 8:54:02 PM Calculating Firing Cones (0.0120s) 7/21/2020 8:54:04 PM Remembering Lost Ship Parts (2.5356s) 7/21/2020 8:54:04 PM Sterilizing Test Chamber (0.1671s) 7/21/2020 8:54:18 PM Remote Probe Programmed To Replicate (13.7613s) 7/21/2020 8:54:18 PM Issuing Orders (0.0361s) 7/21/2020 8:54:18 PM Augmenting Infusers (0.0361s) 7/21/2020 8:54:18 PM Infusing (0.3025s) 7/21/2020 8:54:18 PM Post-Proton Surge (0.0180s) 7/21/2020 8:54:18 PM Stimulate Modulation (0.0810s) 7/21/2020 8:54:20 PM ArcenAssetBundleCache.InstantiatedObjects: 531 7/21/2020 8:54:20 PM Load Surrogates (1.6571s) 7/21/2020 8:54:24 PM Final Checks (3.5873s) 7/21/2020 8:54:24 PM Load Historical Documents (0.0140s) 7/21/2020 8:54:24 PM 48.6 seconds total load time. Boot up FleetOS (1.3s) Check System Logs For Rogue Intelligence (4.9s) Eject Trash Into Hyperspace (0.6s) Bring Cloaking Systems Online (0.3s) Check Nearby Stellar Masses (0.8s) Prepare Explosions and Crackles (0.3s) Calculate Odds Of Success (0.5s) Briefly Panic (7.5s) Install Confidence Routines (0.5s) Bring Commander Interface Online (0.3s) Disengaging Constants (0.4s) Late Axionic Computations (0.8s) Degaussing Advice (0.4s) Guarding The Posts (0.3s) Designing Fleets (0.5s) Detecting Distant Planets (3.1s) Remembering Lost Ship Parts (2.5s) Remote Probe Programmed To Replicate (13.8s) Infusing (0.3s) Load Surrogates (1.7s) Final Checks (3.6s) 7/21/2020 8:54:25 PM Hello Steam user 'Ovalcircle' 7/21/2020 8:54:34 PM Start load save: C:/Program Files (x86)/Steam/steamapps/common/AI War 2/PlayerData/Save/_Internal/LastLobbySettings.save Source1: StartingTheLobbyFromPrior Source3: LoadingLastLobbySettings 7/21/2020 8:54:46 PM PlayerAccount Ovalcircle has now been put in control of faction 1. 7/21/2020 8:54:46 PM Clear out factions that should not be in UI based on savegame: 11 Macrophage Infestation - Tamed Scourge Human Resistance Fighters Marauders Fallen Spire Devourer Golem Outguard Anti-Player Zombie Anti-Everyone Zombie Anti-AI Zombie AI Reserves 7/21/2020 8:54:46 PM Added the faction AIReserves. 7/21/2020 8:54:46 PM Added the faction AntiAIZombie. 7/21/2020 8:54:46 PM Added the faction AntiEveryoneZombie. 7/21/2020 8:54:46 PM Added the faction AntiPlayerZombie. 7/21/2020 8:54:46 PM Added the faction Mercenary. 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'AlarmPost' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/aibuildings/alarmpost/alarmpost.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'Ambush' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/ambush.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'Anomaly' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Nanocaust/BomberAnomaly/BomberAnomaly.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'AntagonizedDysonSphereGolem' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/aibuildings/dysonwarpgate.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'AntiShieldPulsarTank' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/spacetank2/spacetank2.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'AnvilSecuritiesForcefieldFrigate' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/starships/shieldstarship/shieldstarship.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'AnvilSecuritiesSpider' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/spider/spider.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ArchitraveBustuarius' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/arks/arkthanatos/arkthanatos.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ArchitraveCastra' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/Nucleophilic/GuardPostNucleophilic.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ArchitraveDimachaerus' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/fighter/fighterold.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ArchitraveEques' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/sniperguardian/sniperguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ArchitraveHoplomachus' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Guardians/SpiderAndParalysisGuardian/ParalysisGuardian.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ArchitraveParmularius' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/laserguardian/laserguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ArchitravePioneer' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Zenith/Dyson3Bulwark/DysonBulwark.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ArchitraveRetiarius' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/TractorGuardian/TractorGuardian.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ArchitraveScutarius' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/stealthguardian/stealthguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ArchitraveThraex' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/starships/prototypeflagship/prototypeflagship.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ArkOne' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/arks/arkone/arkone.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ArmorPiercingShell' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/armorpiercingshell.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'AstroTrainCarrierStyle' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Specials/AstroTrain/AstroTrainCarrierStyle.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'AstroTrainDepot' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/structures/ai/astrotraindepot.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'AstroTrainDepotVanguard' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/armorship/armorship.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'AstroTrainRaider' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/raider/raider.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'AstroTrainStation' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/resources/fuelrefinery/fuelrefinery.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'AstroTrainTankStyle' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Specials/AstroTrain/AstroTrainTankStyle.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'AstroTrainWithRegularWeapons' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Specials/AstroTrain/AstroTrainWithRegularWeapons.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'AutoBomb' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/FleetShips/AutoBomb/AutoBomb.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'AutocannonMinipod' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/autocannon_minipod/autocannon_minipod.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'AutomatedConstructionBot' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/tachyonmicrofighter/tachyonmicrofighter.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'AutomatedMetabolizingGangsaw' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/vorticularcutlass/vorticularcutlass.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'AutomatedSentinelGunboat' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/sentinelfrigate/sentinelfrigate.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'AutomatedSniper' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/sniper/sniper.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'BackdoorCombatFactory' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/humanbuildings/spacedock/spacedock.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'BastilleTurret' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Turrets/BastilleTurret/BastilleTurret.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'BellePrime' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Arks/Belle Prime/BellePrime.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'BlackHoleMachine' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/aibuildings/blackholemachine/blackholemachine.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'Bombard' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Strikecraft/Bombard/Bombard.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'Builder' fornaturalobjects:False from filename exp1_the_spire_rises.assets/_dlc1/scourge/scourgebuilder/scourgebuilder.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'BulwarkTurret' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Turrets/BulwarkTurret/BulwarkTurret.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'CarrierGuardian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/carrierguardian/carrierguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ChrisTest_humancommandstation' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/buildings/commandstations/humancommandstation/humancommandstation.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ChrisTest_Usurper' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/aibuildings/usurper/usurper.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'CombatEngineer' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/specials/engineer/engineer.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'CommunicationNode' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/humanoddities/scout/scout.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ConcussionCorvette' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/missilecorvette/missilecorvette.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ConcussionGuardian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/missileguardian/missileguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ConcussionGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/Concussion/GuardPostConcussion.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'Coprocessor' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/aibuildings/coprocessora/coprocessor.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'CrusherTurret' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Turrets/CrusherTurret/CrusherTurret.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'Custodian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/shieldguardian/shieldguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'Dark Zenith Beacon' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/aibuildings/ruinednetworknode/ruinednetworknode.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DarkSpirePhantom' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Spire/DarkSpirePhantom/DarkSpirePhantom.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DarkSpireSpecter' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Spire/DarkSpireSpecter/DarkSpireSpecter.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DarkSpireVengeanceGenerator' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Spire/DarkSpireVG/DarkSpireVG.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DarkSpireWard' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Spire/DarkSpireWard/DarkSpireWard.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DarkSpireWraith' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Spire/DarkSpireWraith/DarkSpireWraith.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DataCenter' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/aibuildings/datacenter/data_center.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DeathgripTackleDrone' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Strikecraft/TackleDrone/TackleDrone.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'Devestator' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/starships/siegestarship/siege_starship.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'Deviant' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Nanocaust/MissileCorvetteDeviant/MissileCorvetteDeviant.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DevourerGolem' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/golems/devourergolem/devourergolem.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DevourerShot' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/devourershot.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DevourerShot_Nemesis' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/devourershot_nemesis.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DireConcussionGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/DireConcussion/DireConcussionGuardPost.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DireFragmentingGuardian' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Guardians/FragmentingGuardianAlt/FragmentingGuardian.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DireGravityGuardian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/gravityguardian/gravityguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DireGravityGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/DireGravityGuardPost/DireGravityGuardPost.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DireGrenadeLauncherGuardian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/flakguardian/flakguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DireHeavyBeamGuardian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/heavybeamguardian/heavybeamguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DireHeavyBeamGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/DireHeavyBeamGuardPost/DireHeavyBeamGuardPost.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DireMLRSGuardian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/mlrsguardian/mlrsguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DireNucleophilicGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/DireNucleophilic/DireNucleophilicGuardPost.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DireParalysisGuardian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/widowguardian/widowguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DireParasiteGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/DireParasiteGuardPost/DireParasiteGuardPost.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DirePikeGuardian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/needlerguardian/needlerguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DirePlasmaGuardian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/plasmaguardian/plasmaguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DireSabotGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/DireSabot/DireGuardPostSabot.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DireShredderGuardian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/direshredderguardian/direshredderguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DireShredderGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/DireShredderGuardPost/DireShredderGuardPost.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DireSpiderGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/DireSpider/DireSpiderGuardPost.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DireTantrumingGuardian' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Guardians/FragmentingGuardian/TantrumingGuardian.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DireTemperamentalGuardian' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Guardians/FragmentingGuardian/TemperamentalGuardian.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DireTeslaGuardian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/lightningguardian/lightningguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DireTeslaGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/DireTesla/DireTeslaGuardPost.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DireTethuidaGuardian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/direteuthidaguardian/direteuthidaguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DireTethuidaGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/DireTethuidaGuardPost/DireTethuidaGuardPost.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DireVampireGuardian' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/vampireguardian/vampireguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DistributionNode' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/DistributionAndInstigator/DistributionNode.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DoubleShot_Blue' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/doubleshot_blue.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DoubleShot_Gold' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/doubleshot_gold.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DoubleShot_Green' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/doubleshot_green.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DoubleShot_Red' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/doubleshot_red.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'Drone MLRS' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/mlrscorvette/mlrscorvette.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DroneFusionBomber' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/bomber/bomber.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DroneStingray' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/FleetShips/Stingray/Stringray.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DysonAntagonizer' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/DysonAntagonizer/DysonAntagonizer.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DysonDefender' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Zenith/Dyson2Defender/DysonDefender.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DysonSentinel' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Zenith/Dyson1Sentinel/DysonSentinel.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DZBlackTerminus' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Scourge/ScourgeSpawner/ScourgeSpawner.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DZDreng' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/guardians/implosionguardian/implosionguardian.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'DZEpistyle' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Scourge/ScourgeArmory/ScourgeArmory.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'EconomicCommandStation' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/buildings/commandstations/economiccommandstation/economiccommandstation.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ElegantCurl' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/elegantcurl.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'EMPTurret' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Turrets/EMPTurret/EMPTurret.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'EnergyWave' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/energywave.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'EngineDisruptingShell' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/enginedisruptingshell.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'EngineeringBattlestation' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/aibuildings/experimentalfabricator/experimental_fabricator.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'EnsnarerEtherjet' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/etherjettractor/etherjettractor.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'EnsnarerFocusedGravityGenerator' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/buildings/focusedgravitygenerator/focusedgravitygenerator.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'EnsnarerTractorArray' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/turrets/tractorturret/tractor_turret.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'EvuckPeltianWarrior' fornaturalobjects:False from filename exp1_the_spire_rises.Assets/_DLC1/Scourge/EvuckParts/EvuckPeltian/EvuckPeltianWarrior.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ExogalacticWormhole' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/ExoGalacticWormhole.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ExplosiveInvisible' fornaturalobjects:False from filename aiw2_lines_shots.assets/visualshotsandlines/shots/simplebulletsbyspeed/invisiblebullet.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticAIHunterAnnihilator' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier3_ExtragalacticAIHunterAnnihilator/Tier3_ExtragalacticAIHunterAnnihilator.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticAIHunterSeeker' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier1_ExtragalacticHunterSeeker/Tier1_ExtragalacticHunterSeeker.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticChimera' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier2_ExtragalacticWarspite/Tier2_ExtragalacticWarspite.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticChimeraArtillery' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier2_ExtragalacticWarspiteArtillery/Tier2_ExtragalacticWarspiteArtillery.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticFlenser' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier5_ExtragalacticFlenser/Tier5_ExtragalacticFlenser.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticJackalope' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier3_ExtragalacticWarSlicerFrigate/Tier3_ExtragalacticWarSlicerFrigate.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticMaugrim' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier1_ExtragalacticMaugrim/Tier1_ExtragalacticMaugrim.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticMothership' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier4_ExtragalacticMothership/Tier4_ExtragalacticMothership.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticPhoenix' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier1_ExtralacticRaven/Tier1_ExtralacticRaven.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticPlanetCracker' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier4_ExtragalacticPlanetCracker/Tier4_ExtragalacticPlanetCracker.prefab (this is not a problem, but is odd) 7/21/2020 8:55:11 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticPoltergeist' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier1_ExtragalacticTrespasser/Tier1_ExtragalacticTrespasser.prefab (this is not a problem, but is odd) 7/21/2020 8:55:12 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticThunderbird' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier3_ExtragalacticCommandDeck/Tier3_ExtragalacticCommandDeck.prefab (this is not a problem, but is odd) 7/21/2020 8:55:13 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticWendigo' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier2_ExtragalacticReanimator/Tier2_ExtragalacticReanimator.prefab (this is not a problem, but is odd) 7/21/2020 8:55:14 PM PrototypeObject failed async load and so loaded synchronously for 'ExtragalacticWyrm' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIExtragalactic/Tier2_ExtragalacticShellshocker/Tier2_ExtragalacticShellshocker.prefab (this is not a problem, but is odd) 7/21/2020 8:55:14 PM PrototypeObject failed async load and so loaded synchronously for 'ExtremeLongRangeRailgun' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/extremelongrangerailgun.prefab (this is not a problem, but is odd) 7/21/2020 8:55:14 PM PrototypeObject failed async load and so loaded synchronously for 'ExtremelyLongRangeIon' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/extremelylongrangeion.prefab (this is not a problem, but is odd) 7/21/2020 8:55:15 PM PrototypeObject failed async load and so loaded synchronously for 'Eyebot' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/eyebot/eyebot.prefab (this is not a problem, but is odd) 7/21/2020 8:55:15 PM PrototypeObject failed async load and so loaded synchronously for 'FlakShotAOEBurstAtEnd' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/flakshot.prefab (this is not a problem, but is odd) 7/21/2020 8:55:16 PM PrototypeObject failed async load and so loaded synchronously for 'FleetCapacityExtender' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/aibuildings/advancedresearchstation/fleetcapacityextender.prefab (this is not a problem, but is odd) 7/21/2020 8:55:16 PM PrototypeObject failed async load and so loaded synchronously for 'FortifiedDataCenter' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/aibuildings/datacenter/fortifieddatacenter.prefab (this is not a problem, but is odd) 7/21/2020 8:55:16 PM PrototypeObject failed async load and so loaded synchronously for 'FragmentingGuardianShard' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/Guardians/FragmentingGuardianAlt/FragmentingGuardianShard.prefab (this is not a problem, but is odd) 7/21/2020 8:55:17 PM PrototypeObject failed async load and so loaded synchronously for 'FusionBolt' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/plasmabolt_fusion.prefab (this is not a problem, but is odd) 7/21/2020 8:55:17 PM PrototypeObject failed async load and so loaded synchronously for 'FusionBomb' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/fusionbomb.prefab (this is not a problem, but is odd) 7/21/2020 8:55:17 PM PrototypeObject failed async load and so loaded synchronously for 'FusionBomb_Agravic' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/fusionbomb_agravic.prefab (this is not a problem, but is odd) 7/21/2020 8:55:17 PM PrototypeObject failed async load and so loaded synchronously for 'FusionBomb_Viral' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/fusionbomb_viral.prefab (this is not a problem, but is odd) 7/21/2020 8:55:18 PM PrototypeObject failed async load and so loaded synchronously for 'FusionRocket' fornaturalobjects:False from filename aiwar2goodiebox.assets/arcenbundle/shots/new/fusionrocket.prefab (this is not a problem, but is odd) 7/21/2020 8:55:18 PM PrototypeObject failed async load and so loaded synchronously for 'GhostGrenadeLauncherCorvette' fornaturalobjects:False from filename aiwar2goodiebox.assets/_finalgamemeshes/fleetships/grenadelauncher2/grenadelauncher2.prefab (this is not a problem, but is odd) 7/21/2020 8:55:19 PM PrototypeObject failed async load and so loaded synchronously for 'GhostMLRSGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/MLRS/GuardPostMLRS.prefab (this is not a problem, but is odd) 7/21/2020 8:55:19 PM PrototypeObject failed async load and so loaded synchronously for 'GhostPikeGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/Pike/GuardPostPike.prefab (this is not a problem, but is odd) 7/21/2020 8:55:19 PM PrototypeObject failed async load and so loaded synchronously for 'GhostSabotGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/Sabot/GuardPostSabot.prefab (this is not a problem, but is odd) 7/21/2020 8:55:20 PM PrototypeObject failed async load and so loaded synchronously for 'GhostUnarmedGuardPost' fornaturalobjects:False from filename aiwar2goodiebox.Assets/_FinalGameMeshes/AIBuildings/GuardPosts/UnderConstruction/GuardPostUnderConstruction.prefab (this is not a problem, but is odd) 7/21/2020 9:00:02 PM Current directory used: C:/Program Files (x86)/Steam/steamapps/common/AI War 2/ Process Count = 0 so PlayerDataDirectory used: C:/Program Files (x86)/Steam/steamapps/common/AI War 2/PlayerData/ 7/21/2020 9:00:02 PM Boot up FleetOS (1.0723s) 7/21/2020 9:00:02 PM graphicsDeviceType in use: Direct3D11 graphicsDeviceVersion in use: Direct3D 11.0 [level 11.0] graphicsMultiThreaded: True graphicsShaderLevel: 50 operatingSystem: Windows 8.1 (6.3.0) 64bit graphicsDeviceName: Intel(R) HD Graphics 4000 graphicsDeviceID: 358 graphicsDeviceVendor: Intel graphicsDeviceVendorID: 32902 graphicsDeviceVersion: Direct3D 11.0 [level 11.0] graphicsMemorySize: 912 maxTextureSize: 16384 npotSupport: Full processorType: Intel(R) Core(TM) i5-3230M CPU @ 2.60GHz processorCount: 4 processorFrequency: 2594 systemMemorySize: 8081 supportedRenderTargetCount: 8 supportsComputeShaders: True supportsShadows: True usesReversedZBuffer: True 7/21/2020 9:00:02 PM Check System Logs For Rogue Intelligence (0.3782s) 7/21/2020 9:00:02 PM Game Version: 2.104 7/21/2020 9:00:02 PM Eject Trash Into Hyperspace (0.1643s) 7/21/2020 9:00:02 PM Check For Extra Modules (0.0710s) 7/21/2020 9:00:03 PM Bring Cloaking Systems Online (0.7527s) 7/21/2020 9:00:03 PM Recalculate Speed Of Light (0.0888s) 7/21/2020 9:00:03 PM Optimize Comfort On Command Decks (0.0690s) 7/21/2020 9:00:03 PM Generating Framerates (0.0250s) 7/21/2020 9:00:03 PM Expansions: The Spire Rises (Installed And Enabled!) Zenith Onslaught (Installed And Enabled!) 7/21/2020 9:00:03 PM Mods: SpireRailgunShop (Disabled) 7/21/2020 9:00:03 PM Check Nearby Stellar Masses (0.3103s) 7/21/2020 9:00:04 PM Remembering Alamo (0.2576s) 7/21/2020 9:00:04 PM Boot Audio Comms (0.0636s) 7/21/2020 9:00:04 PM Establish Individual Audio Links (0.0877s) 7/21/2020 9:00:04 PM Prepare Explosions and Crackles (0.0811s) 7/21/2020 9:00:04 PM No resolution change was required. 7/21/2020 9:00:04 PM Applied graphics settings: AntialiasingMode:x2 UseSoftParticles:False BillboardsFaceCameraPosition:False AnisotropicMode:ForceEnable TextureQuality:Full 7/21/2020 9:00:04 PM Applied Framerate Type: 30 FPS (vsync: 0 targetFPS:30) 7/21/2020 9:00:04 PM Refresh Optical Lensing (0.0320s) 7/21/2020 9:00:04 PM Revise Fundamental Physical Laws (0.0210s) 7/21/2020 9:00:05 PM Calculate Odds Of Success (0.6098s) 7/21/2020 9:00:18 PM Briefly Panic (13.5321s) 7/21/2020 9:00:18 PM Install Confidence Routines (0.3983s) 7/21/2020 9:00:19 PM Bring Commander Interface Online (0.3811s) 7/21/2020 9:00:19 PM Motivate All Crews (0.1192s) 7/21/2020 9:00:19 PM Locating Available Networks (0.2189s) 7/21/2020 9:00:19 PM Externalizing Patterns (0.1316s) 7/21/2020 9:00:19 PM Hooking Externals (0.0719s) 7/21/2020 9:00:19 PM Handlizing Hooks (0.0270s) 7/21/2020 9:00:20 PM Disengaging Constants (0.4035s) 7/21/2020 9:00:21 PM Late Axionic Computations (1.4153s) 7/21/2020 9:00:21 PM Connecting to Fleet Command (0.0520s) 7/21/2020 9:00:21 PM Thinking Of Advice (0.0470s) 7/21/2020 9:00:22 PM Degaussing Advice (0.2754s) 7/21/2020 9:00:22 PM Reading Alien Diaries (0.1551s) 7/21/2020 9:00:22 PM Naming All Known Planets (0.0300s) 7/21/2020 9:00:22 PM Remembering Speeds (0.0370s) 7/21/2020 9:00:22 PM Prioritizing Targets (0.0350s) 7/21/2020 9:00:22 PM Rebooting Sensor Arrays (0.0280s) 7/21/2020 9:00:22 PM Unloading Prismatic Grid (0.0270s) 7/21/2020 9:00:22 PM Thinking Of Objectives (0.0280s) 7/21/2020 9:00:22 PM Re-Aligning Objectives (0.0461s) 7/21/2020 9:00:22 PM Inhibiting Visual Scans (0.0901s) 7/21/2020 9:00:22 PM Synthesizing Vocals (0.0441s) 7/21/2020 9:00:22 PM Investigating Map Signatures (0.0864s) 7/21/2020 9:00:22 PM Ventilating Scenarios (0.0413s) 7/21/2020 9:00:22 PM Decontaminating Targeting Systems (0.0232s) 7/21/2020 9:00:22 PM Ejecting Tactical Core (0.0520s) 7/21/2020 9:00:22 PM Calibrating Formations (0.0250s) 7/21/2020 9:00:22 PM Intercepting Galactic Maps (0.0895s) 7/21/2020 9:00:23 PM Discharging Colored Ions (0.0544s) 7/21/2020 9:00:23 PM Replicating Ion Colors (0.0467s) 7/21/2020 9:00:23 PM Faction Diagnostics (0.1308s) 7/21/2020 9:00:23 PM Buffering Hackers (0.1607s) 7/21/2020 9:00:23 PM Inverting Death (0.0493s) 7/21/2020 9:00:23 PM Linear Field Variance (0.0686s) 7/21/2020 9:00:23 PM Charging Marks (0.0462s) 7/21/2020 9:00:24 PM Guarding The Posts (0.5503s) 7/21/2020 9:00:24 PM Range Manifolds (0.0220s) 7/21/2020 9:00:24 PM Purging ROFs (0.0861s) 7/21/2020 9:00:24 PM Manipulating Speeds (0.0510s) 7/21/2020 9:00:24 PM Detecting Projectiles (0.0120s) 7/21/2020 9:00:24 PM Grouping Flow Fields (0.0570s) 7/21/2020 9:00:24 PM Modulating Flow Field Groups (0.1821s) 7/21/2020 9:00:24 PM Designing Fleets (0.3014s) 7/21/2020 9:00:24 PM Thinking Of Technologies (0.0982s) 7/21/2020 9:00:24 PM Categorizing Starboard Sensors (0.0445s) 7/21/2020 9:00:25 PM Injecting Galactic Variables (0.1142s) 7/21/2020 9:00:25 PM Eating Starfields (0.0890s) 7/21/2020 9:00:25 PM Dissolving Distant Planets (0.2283s) 7/21/2020 9:00:25 PM Categorizing All Planets (0.0100s) 7/21/2020 9:00:25 PM Organizing Commands (0.0903s) 7/21/2020 9:00:25 PM Calculating Firing Cones (0.0090s) 7/21/2020 9:00:27 PM Remembering Lost Ship Parts (2.1606s) 7/21/2020 9:00:27 PM Sterilizing Test Chamber (0.2406s) 7/21/2020 9:00:45 PM Upgrade /dev/null (17.5423s) 7/21/2020 9:00:45 PM Issuing Orders (0.0301s) 7/21/2020 9:00:45 PM Augmenting Infusers (0.0441s) 7/21/2020 9:00:45 PM Infusing (0.3355s) 7/21/2020 9:00:45 PM Post-Proton Surge (0.0190s) 7/21/2020 9:00:45 PM Stimulate Modulation (0.0761s) 7/21/2020 9:00:47 PM ArcenAssetBundleCache.InstantiatedObjects: 527 7/21/2020 9:00:47 PM Load Surrogates (1.1473s) 7/21/2020 9:00:52 PM Final Checks (5.1488s) 7/21/2020 9:00:52 PM Load Historical Documents (0.0100s) 7/21/2020 9:00:52 PM 51.3 seconds total load time. Boot up FleetOS (1.1s) Check System Logs For Rogue Intelligence (0.4s) Bring Cloaking Systems Online (0.8s) Check Nearby Stellar Masses (0.3s) Remembering Alamo (0.3s) Calculate Odds Of Success (0.6s) Briefly Panic (13.5s) Install Confidence Routines (0.4s) Bring Commander Interface Online (0.4s) Disengaging Constants (0.4s) Late Axionic Computations (1.4s) Degaussing Advice (0.3s) Guarding The Posts (0.6s) Designing Fleets (0.3s) Remembering Lost Ship Parts (2.2s) Upgrade /dev/null (17.5s) Infusing (0.3s) Load Surrogates (1.1s) Final Checks (5.1s) 7/21/2020 9:00:52 PM Hello Steam user 'Ovalcircle' 7/21/2020 9:01:23 PM Start Generate FULL Map with Tutorial_01 and seed 123456 and planet count 80 and 12 factions (StartATutorial NotLoadingAnything) 7/21/2020 9:01:25 PM Added the faction Mercenary. 7/21/2020 9:01:25 PM PlayerAccount Ovalcircle has now been put in control of faction 1. |
|
Thanks for that -- blah, though. Worst case, I'll add a synchronous loading option for you. But can you post the log from here directly after a crash? macOS ~/Library/Logs/Company Name/Product Name/Player.log Windows C:\Users\username\AppData\LocalLow\CompanyName\ProductName\Player.log Linux ~/.config/unity3d/CompanyName/ProductName/Player.log https://docs.unity3d.com/2019.1/Documentation/Manual/LogFiles.html When unity crashes to the desktop, the actual crash part is not logged in the main arcen logs, only in the unity player log, because our code is already dead by then. Thanks! |
|
Hmm. I booted up, crashed, and rebooted 5 times in a row to try to get the Unity window to pop up, but in my most recent attempt, the lobby actually loaded. I don't know why, since I only waited 15 seconds after I clicked "custom game" to start clicking the game again, while I've waited over 30 seconds on earlier attempts. Though the cursor still became a loading circle, and the screen went whiter, as if it were about to crash, but it all of a sudden loaded the lobby. I'll upload the log anyway and attempt to crash a few more times, then make another comment whit my findings. |
|
Okay, tested 2 more times and the lobby loads after the game freezes for 30 seconds. Spam clicking during that time will bring up the "Error has occurred: Close the program?" window pop up. Basically, it's slower than usual to load the lobby. Added another log just to make sure, but I think it's the same as the one above. |
|
Okay, time to punt. This will take care of it for sure: * The game still loads various xml files asynchronously, and loads icons and music and sound in that fashion, but it no longer tries to load the ships, shots, or wormholes in that way. ** This was just too unreliable, because of some issues in the unity engine. It didn't affect all players, and not all the time -- but enough that it majorly affected the stability of the game for some folks, and that's too much. ** This also removes the potential for the really long (15-30 second) lag time when you are first opening a new game or the lobby if things didn't load during the loading period. Thanks for all your patience! |
|
Oh, by the way -- from your description and the logs, I don't think that the game was actually technically crashing. Windows has a thing where it detects if a program has become unresponsive for more than 10 seconds, and if there's a lot of clicking on the program in particular then it gives a prompt saying "hey it looks like this is busted, want to close it?" When you say yes, it does the equivalent of a task manager kill process. So what I think was happening was that it was being bloody annoying slow, and windows was noticing, and when you clicked something it gave you option to force kill. So technically what you were seeing in this most recent round wasn't a crash at all, but just the game being incredibly bloody slow and unresponsive with the late synchronous loading. Don't get me wrong, that was a major problem, but it explains why your logs were empty and matches your description of what was happening with the OS prompts. Either way it needed to be resolved, but I thought it was interesting. |
Date Modified | Username | Field | Change |
---|---|---|---|
Jul 18, 2020 12:40 am | Sol | New Issue | |
Jul 18, 2020 10:32 am | Chris_McElligottPark | Note Added: 0057682 | |
Jul 18, 2020 12:29 pm | RocketAssistedPuffin | Note Added: 0057685 | |
Jul 18, 2020 3:40 pm | Sol | File Added: Player.log | |
Jul 18, 2020 3:40 pm | Sol | File Added: ArcenDebugLog.txt | |
Jul 18, 2020 3:40 pm | Sol | Note Added: 0057686 | |
Jul 20, 2020 7:07 pm | Chris_McElligottPark | Note Added: 0057726 | |
Jul 20, 2020 7:07 pm | Chris_McElligottPark | Assigned To | => Chris_McElligottPark |
Jul 20, 2020 7:07 pm | Chris_McElligottPark | Status | new => assigned |
Jul 20, 2020 7:37 pm | Chris_McElligottPark | Status | assigned => resolved |
Jul 20, 2020 7:37 pm | Chris_McElligottPark | Resolution | open => fixed |
Jul 20, 2020 7:37 pm | Chris_McElligottPark | Fixed in Version | => 2.102 Digression For Quality |
Jul 20, 2020 7:37 pm | Chris_McElligottPark | Note Added: 0057727 | |
Jul 20, 2020 8:14 pm | Lord Of Nothing | File Added: ArcenDebugLog-2.txt | |
Jul 20, 2020 8:14 pm | Lord Of Nothing | Note Added: 0057728 | |
Jul 20, 2020 8:22 pm | Lord Of Nothing | Note Added: 0057729 | |
Jul 20, 2020 9:25 pm | Sol | File Added: ArcenDebugLog-3.txt | |
Jul 20, 2020 9:25 pm | Sol | Note Added: 0057730 | |
Jul 21, 2020 9:56 am | Chris_McElligottPark | Note Added: 0057739 | |
Jul 21, 2020 10:42 am | Puppet Master | Note Added: 0057741 | |
Jul 21, 2020 9:08 pm | Ovalcircle | File Added: ArcenDebugLog-4.txt | |
Jul 21, 2020 9:08 pm | Ovalcircle | Note Added: 0057754 | |
Jul 21, 2020 11:21 pm | Chris_McElligottPark | Note Added: 0057755 | |
Jul 22, 2020 12:49 am | Ovalcircle | File Added: Player-2.log | |
Jul 22, 2020 12:49 am | Ovalcircle | Note Added: 0057758 | |
Jul 22, 2020 1:03 am | Ovalcircle | File Added: Player-3.log | |
Jul 22, 2020 1:03 am | Ovalcircle | Note Added: 0057759 | |
Jul 22, 2020 9:52 am | Chris_McElligottPark | Note Added: 0057768 | |
Jul 22, 2020 9:55 am | Chris_McElligottPark | Note Added: 0057769 |