blob: b065d26bb01c9e6eee32012be42883d8ad024cf6 [file] [log] [blame]
MG Mud User88f12472016-06-24 23:31:02 +02001SYNOPSIS
Zesstra7ea4a032019-11-26 20:11:40 +01002 string *epilog(int eflag)
MG Mud User88f12472016-06-24 23:31:02 +02003
4DESCRIPTION
Zesstra7ea4a032019-11-26 20:11:40 +01005 Perform final actions before opening the system to users.
MG Mud User88f12472016-06-24 23:31:02 +02006
Zesstra7ea4a032019-11-26 20:11:40 +01007 The argument is the number of -e options that were
8 given to the parser on the commandline. Normally it is just 0
9 or 1. The function should return an array of strings, which
10 traditionally denote the objects to be preloaded with
11 master->preload(). Any other return value is interpreted as
12 "no object to preload". The resulting strings will be passed
13 one at a time as arguments to preload().
MG Mud User88f12472016-06-24 23:31:02 +020014
Zesstra7ea4a032019-11-26 20:11:40 +010015SEE ALSO
16 preload(M), master(M)