Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagecpp
firstline1
titleconstants.cpp
linenumberstrue
const char *season_string[4] = {
"spring",
"summer",
"autumn",
"winter"
const char *seasons[] = {
"Spring",
"Summer",
"Autumn",
"Winter",
"\n"

 

### db.cpp ###
time_info.season is used quite a bit used in function reset_time

### arena.cpp ###
used a lot

### act.other.cpp ###
seasonal_penalty used in delayed_forage

...

Code Block
languagecpp
firstline1
titleact.informative.cpp

...

...

linenumberstrue
const char *season_name[4] // = (character pointer array)

...


{

...


"Spring",

...


"Summer",

...


"Autumn",

...


"Winter"

...


};



### db.cpp ###
time_info.season is used quite a bit used in function reset_time

### arena.cpp ###
used a lot

### act.other.cpp ###
seasonal_penalty used in delayed_forage

### OLC.CPP ###
update_crafts_file - looks for season checks in craft with seasonchk

...