forked from github/server
dev-version:
* Kosmetischer Bugfix Schiffahrt keine doppelten Durchreisen mehr.
This commit is contained in:
parent
0223ef5b2e
commit
70580c0ace
|
@ -1498,13 +1498,12 @@ sail(region * starting_point, unit * u, region * next_point, boolean move_on_lan
|
||||||
/* Falls kein Problem, eines weiter ziehen */
|
/* Falls kein Problem, eines weiter ziehen */
|
||||||
|
|
||||||
route[step] = dir;
|
route[step] = dir;
|
||||||
|
last_point = current_point;
|
||||||
|
current_point = next_point;
|
||||||
tt[++step] = current_point; /* travelthrough */
|
tt[++step] = current_point; /* travelthrough */
|
||||||
u->ship->moved = 1;
|
u->ship->moved = 1;
|
||||||
m++;
|
m++;
|
||||||
|
|
||||||
last_point = current_point;
|
|
||||||
current_point = next_point;
|
|
||||||
|
|
||||||
/* Falls eine Küstenregion, dann in rv[] aufnehmen (die letzte
|
/* Falls eine Küstenregion, dann in rv[] aufnehmen (die letzte
|
||||||
* Küste wird nachher nicht aufgelistet werden, wenn das
|
* Küste wird nachher nicht aufgelistet werden, wenn das
|
||||||
* Schiff dort seine Runde beendent!). */
|
* Schiff dort seine Runde beendent!). */
|
||||||
|
|
|
@ -2924,6 +2924,25 @@
|
||||||
</locale>
|
</locale>
|
||||||
</message>
|
</message>
|
||||||
|
|
||||||
|
<message name="race_cantwork">
|
||||||
|
<type>
|
||||||
|
<arg name="unit" type="unit"></arg>
|
||||||
|
<arg name="region" type="region"></arg>
|
||||||
|
<arg name="command" type="string"></arg>
|
||||||
|
<arg name="race" type="race"></arg>
|
||||||
|
</type>
|
||||||
|
<locale name="de">
|
||||||
|
<nr section="errors">
|
||||||
|
<text>"$unit($unit) in $region($region): '$command' - $race($race,0) können nicht arbeiten."</text>
|
||||||
|
</nr>
|
||||||
|
</locale>
|
||||||
|
<locale name="en">
|
||||||
|
<nr section="errors">
|
||||||
|
<text>"$unit($unit) in $region($region): '$command' - $race($race,0) cannot work."</text>
|
||||||
|
</nr>
|
||||||
|
</locale>
|
||||||
|
</message>
|
||||||
|
|
||||||
<message name="error226">
|
<message name="error226">
|
||||||
<type>
|
<type>
|
||||||
<arg name="unit" type="unit"></arg>
|
<arg name="unit" type="unit"></arg>
|
||||||
|
|
|
@ -564,7 +564,7 @@ nr_size;en;size
|
||||||
nr_spells;en;spells
|
nr_spells;en;spells
|
||||||
nr_combatspells;en;combat spells
|
nr_combatspells;en;combat spells
|
||||||
nr_nospells;en;none
|
nr_nospells;en;none
|
||||||
nr_Addresslist;en;Addresses
|
nr_addresslist;en;Addresses
|
||||||
|
|
||||||
## Küsten
|
## Küsten
|
||||||
Nordwestküste;en;northwest coast
|
Nordwestküste;en;northwest coast
|
||||||
|
|
Loading…
Reference in New Issue