forked from github/server
Neues Feature: Lernen von neuen Talenten unterbinden (Option fuer neue Spielvarianten)
Tippfehler im weihnachtsbaum
This commit is contained in:
parent
bb6bc0c6b5
commit
39e348db1d
|
@ -453,6 +453,12 @@ learn_cmd(unit * u, order * ord)
|
||||||
int money = 0;
|
int money = 0;
|
||||||
skill_t sk;
|
skill_t sk;
|
||||||
int maxalchemy = 0;
|
int maxalchemy = 0;
|
||||||
|
static int learn_newskills = -1;
|
||||||
|
if (learn_newskills<0) {
|
||||||
|
const char * str = get_param(global.parameters, "study.newskills");
|
||||||
|
if (str && strcmp(str, "false")==0) learn_newskills = 0;
|
||||||
|
else learn_newskills = 1;
|
||||||
|
}
|
||||||
|
|
||||||
if (u->number==0) return 0;
|
if (u->number==0) return 0;
|
||||||
if (fval(r->terrain, SEA_REGION)) {
|
if (fval(r->terrain, SEA_REGION)) {
|
||||||
|
@ -494,6 +500,15 @@ learn_cmd(unit * u, order * ord)
|
||||||
cmistake(u, ord, 77, MSG_EVENT);
|
cmistake(u, ord, 77, MSG_EVENT);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
if (learn_newskills==0) {
|
||||||
|
skill * sv = get_skill(u, sk);
|
||||||
|
if (sv==NULL) {
|
||||||
|
/* we can only learn skills we already have */
|
||||||
|
cmistake(u, ord, 77, MSG_EVENT);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* snotlings können Talente nur bis T8 lernen */
|
/* snotlings können Talente nur bis T8 lernen */
|
||||||
if (u->race == new_race[RC_SNOTLING]){
|
if (u->race == new_race[RC_SNOTLING]){
|
||||||
if (get_level(u, sk) >= 8){
|
if (get_level(u, sk) >= 8){
|
||||||
|
|
|
@ -151,8 +151,8 @@
|
||||||
als einen Besucher der Botschafterregion 'Muschelplateau'.</text>
|
als einen Besucher der Botschafterregion 'Muschelplateau'.</text>
|
||||||
</string>
|
</string>
|
||||||
<string name="xmastree">
|
<string name="xmastree">
|
||||||
<text locale="de">Dieser wunderschoen geschmueckte Baum entfaltet in den Wintermonaten eine magsiche Wirkung auf den ganzen Wald.</text>
|
<text locale="de">Dieser wunderschoen geschmueckte Baum entfaltet in den Wintermonaten eine magische Wirkung auf den ganzen Wald.</text>
|
||||||
<text locale="en">In the winter months, this beautifully decorated tree has a mgical effect on the entire forest.</text>
|
<text locale="en">In the winter months, this beautifully decorated tree has a magical effect on the entire forest.</text>
|
||||||
</string>
|
</string>
|
||||||
<string name="stardust">
|
<string name="stardust">
|
||||||
<text locale="de">Dieser magische Staub ist aus einem im Winter vom Himmel gefallenen
|
<text locale="de">Dieser magische Staub ist aus einem im Winter vom Himmel gefallenen
|
||||||
|
|
Loading…
Reference in New Issue