-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cfg): new configuation solution
- Loading branch information
Showing
154 changed files
with
5,320 additions
and
6,326 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
GLOBAL_LIST_INIT(ai_names, world.file2list("config/names/ai.txt")) | ||
GLOBAL_LIST_INIT(wizard_first, world.file2list("config/names/wizardfirst.txt")) | ||
GLOBAL_LIST_INIT(wizard_second, world.file2list("config/names/wizardsecond.txt")) | ||
GLOBAL_LIST_INIT(ninja_titles, world.file2list("config/names/ninjatitle.txt")) | ||
GLOBAL_LIST_INIT(ninja_names, world.file2list("config/names/ninjaname.txt")) | ||
GLOBAL_LIST_INIT(commando_names, world.file2list("config/names/death_commando.txt")) | ||
GLOBAL_LIST_INIT(first_names_male, world.file2list("config/names/first_male.txt")) | ||
GLOBAL_LIST_INIT(first_names_female, world.file2list("config/names/first_female.txt")) | ||
GLOBAL_LIST_INIT(last_names, world.file2list("config/names/last.txt")) | ||
GLOBAL_LIST_INIT(clown_names, world.file2list("config/names/clown.txt")) | ||
GLOBAL_LIST_INIT(golem_names, world.file2list("config/names/golem.txt")) | ||
GLOBAL_LIST_INIT(ai_names, world.file2list("strings/names/ai.txt")) | ||
GLOBAL_LIST_INIT(wizard_first, world.file2list("strings/names/wizardfirst.txt")) | ||
GLOBAL_LIST_INIT(wizard_second, world.file2list("strings/names/wizardsecond.txt")) | ||
GLOBAL_LIST_INIT(ninja_titles, world.file2list("strings/names/ninjatitle.txt")) | ||
GLOBAL_LIST_INIT(ninja_names, world.file2list("strings/names/ninjaname.txt")) | ||
GLOBAL_LIST_INIT(commando_names, world.file2list("strings/names/death_commando.txt")) | ||
GLOBAL_LIST_INIT(first_names_male, world.file2list("strings/names/first_male.txt")) | ||
GLOBAL_LIST_INIT(first_names_female, world.file2list("strings/names/first_female.txt")) | ||
GLOBAL_LIST_INIT(last_names, world.file2list("strings/names/last.txt")) | ||
GLOBAL_LIST_INIT(clown_names, world.file2list("strings/names/clown.txt")) | ||
GLOBAL_LIST_INIT(golem_names, world.file2list("strings/names/golem.txt")) | ||
|
||
GLOBAL_LIST_INIT(rus_nouns, world.file2list("config/names/rus_nouns.txt")) | ||
GLOBAL_LIST_INIT(rus_adjectives, world.file2list("config/names/rus_adjectives.txt")) | ||
GLOBAL_LIST_INIT(rus_verbs, world.file2list("config/names/rus_verbs.txt")) | ||
GLOBAL_LIST_INIT(rus_occupations, world.file2list("config/names/rus_occupations.txt")) | ||
GLOBAL_LIST_INIT(rus_bays, world.file2list("config/names/rus_bays.txt")) | ||
GLOBAL_LIST_INIT(rus_local_terms, world.file2list("config/names/rus_local_terms.txt")) | ||
GLOBAL_LIST_INIT(rus_nouns, world.file2list("strings/names/rus_nouns.txt")) | ||
GLOBAL_LIST_INIT(rus_adjectives, world.file2list("strings/names/rus_adjectives.txt")) | ||
GLOBAL_LIST_INIT(rus_verbs, world.file2list("strings/names/rus_verbs.txt")) | ||
GLOBAL_LIST_INIT(rus_occupations, world.file2list("strings/names/rus_occupations.txt")) | ||
GLOBAL_LIST_INIT(rus_bays, world.file2list("strings/names/rus_bays.txt")) | ||
GLOBAL_LIST_INIT(rus_local_terms, world.file2list("strings/names/rus_local_terms.txt")) | ||
//loaded on startup because of " | ||
//would include in rsc if ' was used |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.