CVSROOT:        /cvsroot/wesnoth
Module name:    wesnoth
Branch:         
Changes by:     David White <[EMAIL PROTECTED]> 05/05/15 20:59:43

Modified files:
        src            : preferences.cpp 

Log message:
        made default xp for multiplayer games 70%, and default gold per village 
2

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/preferences.cpp.diff?tr1=1.156&tr2=1.157&r1=text&r2=text

Patches:
Index: wesnoth/src/preferences.cpp
diff -u wesnoth/src/preferences.cpp:1.156 wesnoth/src/preferences.cpp:1.157
--- wesnoth/src/preferences.cpp:1.156   Sun May 15 20:54:57 2005
+++ wesnoth/src/preferences.cpp Sun May 15 20:59:43 2005
@@ -1,4 +1,4 @@
-/* $Id: preferences.cpp,v 1.156 2005/05/15 20:54:57 Sirp Exp $ */
+/* $Id: preferences.cpp,v 1.157 2005/05/15 20:59:43 Sirp Exp $ */
 /*
    Copyright (C) 2003 by David White <[EMAIL PROTECTED]>
    Part of the Battle for Wesnoth Project http://wesnoth.whitevine.net
@@ -534,7 +534,7 @@
 
 int village_gold()
 {      
-       static const int default_value = 1;
+       static const int default_value = 2;
        int value = 0;
        const string_map::const_iterator i = 
prefs.values.find("mp_village_gold");
        if(i != prefs.values.end() && i->second.empty() == false) {
@@ -557,7 +557,7 @@
 
 int xp_modifier()
 {      
-       static const int default_value = 100;
+       static const int default_value = 70;
        int value = 0;
        const string_map::const_iterator i = 
prefs.values.find("mp_xp_modifier");
        if(i != prefs.values.end() && i->second.empty() == false) {


Reply via email to