stratagus-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Stratagus-CVS] stratagus doc/ChangeLog.html src/clone/unit.c


From: Russell Smith
Subject: [Stratagus-CVS] stratagus doc/ChangeLog.html src/clone/unit.c
Date: Mon, 27 Oct 2003 00:39:35 -0500

CVSROOT:        /cvsroot/stratagus
Module name:    stratagus
Branch:         
Changes by:     Russell Smith <address@hidden>  03/10/27 00:39:35

Modified files:
        doc            : ChangeLog.html 
        src/clone      : unit.c 

Log message:
        Fixed Bug 6085: Pb in saving spell order action

Patches:
Index: stratagus/doc/ChangeLog.html
diff -u stratagus/doc/ChangeLog.html:1.563 stratagus/doc/ChangeLog.html:1.564
--- stratagus/doc/ChangeLog.html:1.563  Sat Oct 25 14:58:42 2003
+++ stratagus/doc/ChangeLog.html        Mon Oct 27 00:39:34 2003
@@ -2,7 +2,7 @@
 <html>
 <head>
 <!--
-----   $Id: ChangeLog.html,v 1.563 2003/10/25 18:58:42 n0body Exp $
+----   $Id: ChangeLog.html,v 1.564 2003/10/27 05:39:34 mr-russ Exp $
 
 ----   (c) Copyright 1998-2003 by Lutz Sammer
 
@@ -36,6 +36,7 @@
 <li>Future 2.00 Release<p>
     <ul>
     <li>++
+    <li>Fixed Bug #6085: Pb in saving spell order action (from Russell Smith).
     <li>Applied patch #2130 (missile flags and area-heal) (from Jarod Dauphin).
     <li>Applied patch #2116 (correct missile directions) (from Jarod Dauphin).
     <li>Added Neutral Minimap Color. (from Russell Smith).
Index: stratagus/src/clone/unit.c
diff -u stratagus/src/clone/unit.c:1.317 stratagus/src/clone/unit.c:1.318
--- stratagus/src/clone/unit.c:1.317    Sat Oct 25 19:10:44 2003
+++ stratagus/src/clone/unit.c  Mon Oct 27 00:39:35 2003
@@ -26,7 +26,7 @@
 //      Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 //      02111-1307, USA.
 //
-//     $Id: unit.c,v 1.317 2003/10/25 23:10:44 n0body Exp $
+//     $Id: unit.c,v 1.318 2003/10/27 05:39:35 mr-russ Exp $
 
 //@{
 
@@ -3457,7 +3457,7 @@
                    (int)order->Arg1 >> 16, (int)order->Arg1 & 0xFFFF);
                break;
            case UnitActionSpellCast:
-               CLprintf(file, " spell %s", ((SpellType*)order->Arg1)->Ident);
+               CLprintf(file, " spell %s", 
((SpellType*)order->Arg1)->IdentName);
                break;
            case UnitActionResearch:
                CLprintf(file, " upgrade %s", ((Upgrade*)order->Arg1)->Ident);
@@ -3738,7 +3738,7 @@
     int RunStart;
 
     CLprintf(file, "\n;;; -----------------------------------------\n");
-    CLprintf(file, ";;; MODULE: units $Id: unit.c,v 1.317 2003/10/25 23:10:44 
n0body Exp $\n\n");
+    CLprintf(file, ";;; MODULE: units $Id: unit.c,v 1.318 2003/10/27 05:39:35 
mr-russ Exp $\n\n");
 
     //
     // Local variables




reply via email to

[Prev in Thread] Current Thread [Next in Thread]