forked from github/server
fix game_name, remove it from rules
This commit is contained in:
parent
9ccaab6516
commit
30665f874a
|
@ -8,8 +8,6 @@
|
|||
"jsreport"
|
||||
],
|
||||
"settings": {
|
||||
"game.id": 2,
|
||||
"game.name": "Eressea",
|
||||
"orders.default": "work",
|
||||
"NewbieImmunity": 8,
|
||||
"modules.wormholes": true,
|
||||
|
|
|
@ -25,8 +25,6 @@
|
|||
"jsreport"
|
||||
],
|
||||
"settings": {
|
||||
"game.id": 3,
|
||||
"game.name": "E3",
|
||||
"orders.default": "work",
|
||||
"database.gameid": 7,
|
||||
"NewbieImmunity": 4,
|
||||
|
|
|
@ -25,8 +25,6 @@
|
|||
"jsreport"
|
||||
],
|
||||
"settings": {
|
||||
"game.id": 4,
|
||||
"game.name": "Deveron",
|
||||
"orders.default": "work",
|
||||
"database.gameid": 7,
|
||||
"NewbieImmunity": 4,
|
||||
|
|
|
@ -6,12 +6,10 @@
|
|||
_x: preposition (15 /Schlumpf/schwerter)
|
||||
_a: including article (ein Schlumpf, a smurf)
|
||||
-->
|
||||
<strings>
|
||||
<string name="mailcmd">
|
||||
<text locale="de">BEFEHLE</text>
|
||||
<text locale="en">ORDERS</text>
|
||||
</string>
|
||||
</strings>
|
||||
<string name="vortex">
|
||||
<text locale="de">Wirbel</text>
|
||||
<text locale="en">vortex</text>
|
||||
|
|
|
@ -815,7 +815,7 @@ const char * game_name_upper(void)
|
|||
char *r = result;
|
||||
const char *param = game_name();
|
||||
const char *c = param;
|
||||
while (*c && (r-result)<sizeof(result)) {
|
||||
while (*c && (result+sizeof(result))>r) {
|
||||
*r++ = (char)toupper(*c++);
|
||||
}
|
||||
*r = '\0';
|
||||
|
|
Loading…
Reference in New Issue