[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Wesnoth-cvs-commits] wesnoth/src game_events.cpp
From: |
Philippe Plantier |
Subject: |
[Wesnoth-cvs-commits] wesnoth/src game_events.cpp |
Date: |
Sat, 19 Mar 2005 13:25:21 -0500 |
CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: Philippe Plantier <address@hidden> 05/03/19 18:25:21
Modified files:
src : game_events.cpp
Log message:
condition=loss => condition=lose in the [objectives] WML.
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/game_events.cpp.diff?tr1=1.130&tr2=1.131&r1=text&r2=text
Patches:
Index: wesnoth/src/game_events.cpp
diff -u wesnoth/src/game_events.cpp:1.130 wesnoth/src/game_events.cpp:1.131
--- wesnoth/src/game_events.cpp:1.130 Sat Mar 19 13:55:48 2005
+++ wesnoth/src/game_events.cpp Sat Mar 19 18:25:21 2005
@@ -1,4 +1,4 @@
-/* $Id: game_events.cpp,v 1.130 2005/03/19 13:55:48 silene Exp $ */
+/* $Id: game_events.cpp,v 1.131 2005/03/19 18:25:21 gruikya Exp $ */
/*
Copyright (C) 2003 by David White <address@hidden>
Part of the Battle for Wesnoth Project http://wesnoth.whitevine.net
@@ -510,7 +510,7 @@
// [/objective]
// [objective]
// description="Death of Konrad"
- // condition=loss
+ // condition=lose
// [/objective]
// [/objectives]
// [/event]
@@ -562,7 +562,7 @@
win_objectives.append("\n");
win_objectives.append(win_str);
win_objectives.append(description);
- } else if(condition == "loss") {
+ } else if(condition == "lose") {
lose_objectives.append("\n");
lose_objectives.append(lose_str);
lose_objectives.append(description);