Installer Steam
log på
|
sprog
简体中文 (forenklet kinesisk)
繁體中文 (traditionelt kinesisk)
日本語 (japansk)
한국어 (koreansk)
ไทย (thai)
Български (bulgarsk)
Čeština (tjekkisk)
Deutsch (tysk)
English (engelsk)
Español – España (spansk – Spanien)
Español – Latinoamérica (spansk – Latinamerika)
Ελληνικά (græsk)
Français (fransk)
Italiano (italiensk)
Bahasa indonesia (indonesisk)
Magyar (ungarsk)
Nederlands (hollandsk)
Norsk
Polski (polsk)
Português (portugisisk – Portugal)
Português – Brasil (portugisisk – Brasilien)
Română (rumænsk)
Русский (russisk)
Suomi (finsk)
Svenska (svensk)
Türkçe (tyrkisk)
Tiếng Việt (Vietnamesisk)
Українська (ukrainsk)
Rapporter et oversættelsesproblem
For in-colony solution to storage almost infinite amount of items without any affect on perfomance I was doing other mod, that called Underground Vault , which might fit what you need.
I think you can support Red's Performance Fixes just by changing your code for "isEggLayer" to:
```bool iSEggLayer { get { return this.animalThingDef.HasComp<CompEggLayer>(); } }```
That version of `HasComp` (with the generic instead of the type as an argument) will actually use `IsAssignableFrom`, and since Red's Performance Fixes sub-classes `CompEgglayer`, this will work fine with it (and be more compatible with anyone who might sub-class any comp, really).
I'm using this locally to good effect.
It would be nice if it at least refunded the 2 animals I needed to start the ranch...
Maybe just generate a new male/female pair at minimum breeding age and add them to the caravan when packing up...
Cheers and thanks for the quick response.