tchange "Germany" to main country, fix naming of extra places - vaccinewars - be a doctor and try to vaccinate the world
(HTM) git clone git://src.adamsgaard.dk/vaccinewars
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 027f1cfed96c302cb5f0d8576e73e3fd63a3c6d9
(DIR) parent 1bd1f5840fbcc2f4a9ee97f6d7ee06ca46cce80b
(HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Sun, 6 Feb 2022 08:03:46 +0100
change "Germany" to main country, fix naming of extra places
Diffstat:
M src/dopewars.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
---
(DIR) diff --git a/src/dopewars.c b/src/dopewars.c
t@@ -193,8 +193,8 @@ struct NAMES DefaultNames = {
N_("%m-%d-%Y"),
/* Names of the loan shark, the bank, the gun shop, and the pub,
respectively */
- N_("the EU"), N_("the EU"),
- N_("University"), N_("the university")
+ N_("the Bank"), N_("the EU"),
+ N_("the medical supply store"), N_("the University")
};
struct CURRENCY Currency = {
t@@ -737,9 +737,9 @@ struct DRUG DefaultDrug[] = {
struct LOCATION DefaultLocation[] = {
/* The names of the default locations */
- {N_("USA"), 10, NUMDRUG / 2 + 1, NUMDRUG},
+ {N_("Germany"), 10, NUMDRUG / 2 + 1, NUMDRUG},
{N_("Russia"), 5, NUMDRUG / 2 + 2, NUMDRUG},
- {N_("Germany"), 15, NUMDRUG / 2, NUMDRUG},
+ {N_("USA"), 15, NUMDRUG / 2, NUMDRUG},
{N_("Myanmar"), 90, NUMDRUG / 2 - 2, NUMDRUG - 2},
{N_("Latvia"), 20, NUMDRUG / 2, NUMDRUG},
{N_("Denmark"), 70, NUMDRUG / 2 - 2, NUMDRUG - 1},