- Kleine Fixes

This commit is contained in:
Christian Schlittchen 2002-02-17 08:10:13 +00:00
parent 9b2d05caf8
commit 62a97407af
3 changed files with 7 additions and 6 deletions

View File

@ -240,7 +240,7 @@ expandorders(region * r, request * requests)
}
/* ------------------------------------------------------------- */
#if SKILLPOINTS == 0
static void
change_level(unit * u, skill_t sk, int bylevel)
{
@ -252,6 +252,7 @@ change_level(unit * u, skill_t sk, int bylevel)
sv->learning = 0;
}
}
#endif
static void
expandrecruit(region * r, request * recruitorders)

View File

@ -23,9 +23,7 @@
#define HUNGER_DISABLES_LONGORDERS 1
#define REDUCED_PEASANTGROWTH 0
#define RACE_ADJUSTMENTS 1
#define TEACHDIFFERENCE 1
#define PEASANT_ADJUSTMENT 1
#define SKILLPOINTS 1
#define SKILLPOINTS 0

View File

@ -286,13 +286,14 @@ SeedPartei(void)
}
static int
level(int days)
days2level(int days)
{
int l = 0;
while (level_days(l)<=days) ++l;
return l-1;
}
#if SKILLPOINTS == 0
static void
change_level(unit * u, skill_t sk, int bylevel)
{
@ -304,11 +305,12 @@ change_level(unit * u, skill_t sk, int bylevel)
sv->learning = 0;
}
}
#endif
static void
give_latestart_bonus(region *r, unit *u, int b)
{
int bsk = level(b*30);
int bsk = days2level(b*30);
change_level(u, SK_OBSERVATION, bsk);
change_money(u, 200*b);