Description:
Differentiate between different types.
Commit status:
[Not Reviewed]
References:
Comments:
0 Commit comments 0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
Add another comment

r258:aa853d26a69a -

@@ -1349,7 +1349,11
1349 1349 "family_company": ["#surname# Brothers", "#surname# and Sons", "#surname# and Progeny", "#surname# Siblings"],
1350 1350 "logging_company": ["#family_company#", "#family_company#", "#surname# Logging", "#town_name_adjectives# #town_name_endings# #company_ending#",
1351 1351 "#tree_species_common# forestry #company_ending#", "the #tree_species_common# forestry company "],
1352 "company_description": ["Family loggers since #establish_year#", "Loggers since #establish_year#", "Dedicated to our community, workers, and environment."],
1352 "large_company": ["#town_name_adjectives# #town_name_endings# #company_ending#",
1353 "#tree_species_common# forestry #company_ending#", "the #tree_species_common# forestry company "],
1354 "company_description": ["Loggers since #establish_year#", "Dedicated to our community, workers, and environment."],
1355 "family_company_description": ["Family loggers since #establish_year#", "Family owned and dedicated to our community, workers, and environment."],
1356 "large_company_description": ["Dedicated to our community, workers, and environment.", "Founded in #establish_year#", "Est. #establish_year#"],
1353 1357 "vars": "assistantName = #assistantName# \n whatever = #whatever#",
1354 1358 "test": "test",
1355 1359 "empty": ""
@@ -255,11 +255,18
255 255
256 256 }
257 257
258 for (int i = 0; i < 10; i++)
258 for (int i = 0; i < 3; i++)
259 259 {
260 260
261 261 WorldBuilder.SendMessage(new SpawnOrganizationtMessage { offersContracts = true,
262 name = "#logging_company.capitalizeAll#",
262 263 description = "#company_description#" });
264 WorldBuilder.SendMessage(new SpawnOrganizationtMessage { offersContracts = true,
265 name = "#family_company.capitalizeAll#",
266 description = "#family_company_description#" });
267 WorldBuilder.SendMessage(new SpawnOrganizationtMessage { offersContracts = true,
268 name = "#large_company.capitalizeAll#",
269 description = "#large_company_description#" });
263 270 }
264 271 WorldBuilder.SendMessage(new SpawnContractMessage
265 272 {
You need to be logged in to leave comments. Login now