安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题
Sorry for having been confusing. :(
Here. Thank you!
I use Medieval Overhaul in my run and i see my pawn use another benchwork for recycling clothes (by gizmo) , this second benchwork not have recipes too.
Any idea where this might come from (I put this mod at the bottom of my list to check)?
https://psteamcommunity.yuanyoumao.com/sharedfiles/filedetails/?id=2883755766&searchtext=favourites
And the original version source code.
https://github.com/XeoNovaDan/RimworldFavourites
Hey, Mlie. Totally get that its a vanilla limitation. But knowing how awesome you are; I have to wonder... Would it be at all possible to prevent pawns from moving the item once designated except for the purposes of recycling? Just a thought. If not, that's cool. We all really appreciate everything you do for the community already.
In line 74 of JobDriver_RecycleThing.cs replace "workLeft -= statValue" with "workLeft -= statValue*delta" and in line 61 of JobDriver_DestroyThing.cs replace "workLeft -= 1" with "workLeft -= delta"
This fixes the issue by ensuring the amount of work done is proportionnal to the amount of time that passed since last ticked and not the number of times this method was ticked.
doWork.tickIntervalAction = delegate(int delta)
{
var actor = doWork.actor;
_ = actor.jobs.curJob;
workLeft -= 1f;
actor.GainComfortFromCellIfPossible(delta, true);
if (workLeft <= 0f)
{
doWork.actor.jobs.curDriver.ReadyForNextToil();
}
};