Heavenfall Posted April 9, 2013 Share Posted April 9, 2013 (edited) [MENTION=10271]WrathOf[/MENTION] [MENTION=2]Bigfoot[/MENTION] So I just had Steam download the latest patch, The End is Nigh! As a modder, one of the first things I usually do is make sure my mods work with a new patch. However, I'm running into a very peculiar issue in this patch. Even the smallest mod will cause the in-game textures to fail to render. For example this mod in a modmain.lua-- Timed Death for Beesfunction timedbeedeathprefabpostinit(inst) local thisbeehomelessforXdays = 0 local beesdieafterhomelessforXdays = 4 inst:ListenForEvent( "daytime", function() if not inst.components.homeseeker and inst.components.health then thisbeehomelessforXdays = thisbeehomelessforXdays + 1 if thisbeehomelessforXdays >= beesdieafterhomelessforXdays then inst.components.health:DoDelta(-150) end end end, GLOBAL.GetWorld())endAddPrefabPostInit("bee", timedbeedeathprefabpostinit)AddPrefabPostInit("killerbee", timedbeedeathprefabpostinit)will cause item textures not to render in the inventory or crafting menu. The log gives off errors:WARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/beefalohat.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/campfire.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/firepit.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/torch.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/treasurechest.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/homesign.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/wall_hay_item.texReset() returningWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/researchlab.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/researchlab2.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/winterometer.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/rainometer.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/lightning_rod.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/beemine.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/spear.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/armorgrass.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/armorwood.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/blowdart_sleep.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/blowdart_fire.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/blowdart_pipe.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/twigs.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/twigs.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/beemine.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/spear.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/armorgrass.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/armorwood.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/blowdart_sleep.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/blowdart_fire.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/blowdart_pipe.texbut I can't really bugtrack because that error is emanating from the dontstarve_steam.exe ImageWidget..\source\game\components\ImageWidget.cppWARNING! Could not set texture: %sSo... what's going on here? Edited April 9, 2013 by Heavenfall Link to comment https://forums.kleientertainment.com/forums/topic/14532-re-end-is-night-patch/ Share on other sites More sharing options...
Developer Bigfoot Posted April 9, 2013 Developer Share Posted April 9, 2013 This is strange indeed... Looking into it! Link to comment https://forums.kleientertainment.com/forums/topic/14532-re-end-is-night-patch/#findComment-135830 Share on other sites More sharing options...
Developer Bigfoot Posted April 9, 2013 Developer Share Posted April 9, 2013 [MENTION=12700]Heavenfall[/MENTION] This isn't happening to me, at least for my samplemods. Do you have any files edited in the data folder? Can you send me a link to a mod that breaks for you? Link to comment https://forums.kleientertainment.com/forums/topic/14532-re-end-is-night-patch/#findComment-135838 Share on other sites More sharing options...
Macbet Posted April 9, 2013 Share Posted April 9, 2013 and after the update, and my "crutches" to run is not ASCII Russian, too, stopped working: ( Link to comment https://forums.kleientertainment.com/forums/topic/14532-re-end-is-night-patch/#findComment-135840 Share on other sites More sharing options...
Heavenfall Posted April 9, 2013 Author Share Posted April 9, 2013 (edited) [MENTION=2]Bigfoot[/MENTION] sure, but it also breaks just using samplemod (the one that comes with the game).https://dl.dropbox.com/u/32649007/HF_timedbeedeath.rarI have no edited files in the game, and I verified that all my install files are right using the steam verify thingy. I also tried deleting my profile entirely in case there was something strange in the saveindex. The same problem remained upon restarting the game.I am reinstalling the game now.Edit: Removed the game and downloaded it again, added samplemod to modsettings.lua. Same problem shows up in-game.WARNING! Could not set texture: mods/samplemod/inventoryimages/researchlab.texWARNING! Could not set texture: mods/samplemod/inventoryimages/researchlab2.texWARNING! Could not set texture: mods/samplemod/inventoryimages/winterometer.texWARNING! Could not set texture: mods/samplemod/inventoryimages/rainometer.texWARNING! Could not set texture: mods/samplemod/inventoryimages/lightning_rod.tex Edited April 9, 2013 by Heavenfall Link to comment https://forums.kleientertainment.com/forums/topic/14532-re-end-is-night-patch/#findComment-135847 Share on other sites More sharing options...
Developer Bigfoot Posted April 9, 2013 Developer Share Posted April 9, 2013 [MENTION=12700]Heavenfall[/MENTION] I just tried it again on my Steam retail machine and it still doesn't break... not sure what's up? Link to comment https://forums.kleientertainment.com/forums/topic/14532-re-end-is-night-patch/#findComment-135871 Share on other sites More sharing options...
Heavenfall Posted April 9, 2013 Author Share Posted April 9, 2013 Is anyone else seeing the same problem? I'm basically running a clean install at this point with just one single mod, samplemod, added. Link to comment https://forums.kleientertainment.com/forums/topic/14532-re-end-is-night-patch/#findComment-135880 Share on other sites More sharing options...
Heavenfall Posted April 9, 2013 Author Share Posted April 9, 2013 This is what it looks like in-game. Notice the "empty" crafting slot and the stacked inventory items missing icons.http://cloud-2.steampowered.com/ugc/885230667734858119/BA2ADEDE54AA0A62AB5F252F27AF76CC958F8A92/1024x576.resizedimage Link to comment https://forums.kleientertainment.com/forums/topic/14532-re-end-is-night-patch/#findComment-135889 Share on other sites More sharing options...
Developer Bigfoot Posted April 9, 2013 Developer Share Posted April 9, 2013 [MENTION=12700]Heavenfall[/MENTION] okay I see it now. Now need to debug... Link to comment https://forums.kleientertainment.com/forums/topic/14532-re-end-is-night-patch/#findComment-136107 Share on other sites More sharing options...
Developer Bigfoot Posted April 9, 2013 Developer Share Posted April 9, 2013 Found the problem! Will patch soon Link to comment https://forums.kleientertainment.com/forums/topic/14532-re-end-is-night-patch/#findComment-136114 Share on other sites More sharing options...
NoOne Posted April 9, 2013 Share Posted April 9, 2013 blame jenkins . his name is all over the new converted code . example c:\jenkins\workspace\jobs\DontStarve_Make_Steam_Package\workspace\data\scripts\prefabs\fire.luaand no its not my side of things or it would say Mr.M Link to comment https://forums.kleientertainment.com/forums/topic/14532-re-end-is-night-patch/#findComment-136157 Share on other sites More sharing options...
fear_town Posted April 9, 2013 Share Posted April 9, 2013 I have this problem.. With what the picture looked like.. Stuff missing icons etc.. It's not gamebreaking.. If you hover over the blank spots it says what they are..For clarity I am running the old Doorway version of Test Tools only.. Haven't tried without.. Link to comment https://forums.kleientertainment.com/forums/topic/14532-re-end-is-night-patch/#findComment-136256 Share on other sites More sharing options...
Developer Bigfoot Posted April 10, 2013 Developer Share Posted April 10, 2013 This should be fixed and pushed out now. I'm not in the office though, so it's hard to verify. Baby duty! Link to comment https://forums.kleientertainment.com/forums/topic/14532-re-end-is-night-patch/#findComment-136406 Share on other sites More sharing options...
fear_town Posted April 10, 2013 Share Posted April 10, 2013 Can confirm it's fixed.. At least with Test Tools.. Outdated version even.. Link to comment https://forums.kleientertainment.com/forums/topic/14532-re-end-is-night-patch/#findComment-136506 Share on other sites More sharing options...
Heavenfall Posted April 10, 2013 Author Share Posted April 10, 2013 Fixed for me too, thanks. Link to comment https://forums.kleientertainment.com/forums/topic/14532-re-end-is-night-patch/#findComment-136736 Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now