安裝 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();
}
};