Ludeon Forums

RimWorld => Mods => Topic started by: Conz on September 18, 2015, 04:14:17 AM

Title: [Mod request] More Animal Zones
Post by: Conz on September 18, 2015, 04:14:17 AM
Hi,

would it be possible to add more animal zones than the current five?
Is this value hardcoded or can this be changed by a mod?
Title: Re: [Mod request] More Animal Zones
Post by: skullywag on September 18, 2015, 07:29:28 AM
Its a private constant in the area manager:

public class AreaManager : IExposable
   {
      private const int StartingAreaCount = 1;

      private const int MaxAllowedAreasPerMode = 5;

make of that what you will....
Title: Re: [Mod request] More Animal Zones
Post by: Conz on September 18, 2015, 07:56:39 AM
Thank you for the info.