Page 1 of 1

IDEA for the NEXT PATCH!

Posted: 30 Apr 2018, 07:19
by plesiosaurus
What if instead of 4 seasons to choose from there were all 12 months? Since they are each a bit different, it would add even more variety to the game.

Re: IDEA for the NEXT PATCH!

Posted: 30 Apr 2018, 17:15
by Dr.MonaLisa
Seasons list is hardcoded in game executable. It's impossible to add the seasons by simple hdrs file modification:

Code: Select all

ENUM eSeason {
	kSeason_Winter, 
	kSeason_Spring,
	kSeason_Summer, 
	kSeason_Fall, 
	kNumSeasons,

	kSeason_Invalid = -1,
	kSeason_Random = -2,
};
Also they're used in other places in the code to set the suitable textures, etc.
So I can say it's "impossible" to add (because it would require a few months of assembling to find it), and this option isn't very needed.