pingus-cvs
[Top][All Lists]
Advanced

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

[Pingus-CVS] CVS: Games/Pingus/src/worldobjsdata bumper_data.cxx,1.1,1.2


From: grumbel
Subject: [Pingus-CVS] CVS: Games/Pingus/src/worldobjsdata bumper_data.cxx,1.1,1.2 fake_exit_data.cxx,1.1,1.2 guillotine_data.cxx,1.1,1.2 hammer_data.cxx,1.1,1.2 laser_exit_data.cxx,1.1,1.2 smasher_data.cxx,1.2,1.3 spike_data.cxx,1.1,1.2
Date: 10 Sep 2002 15:36:46 -0000

Update of /usr/local/cvsroot/Games/Pingus/src/worldobjsdata
In directory dark:/tmp/cvs-serv27925/worldobjsdata

Modified Files:
        bumper_data.cxx fake_exit_data.cxx guillotine_data.cxx 
        hammer_data.cxx laser_exit_data.cxx smasher_data.cxx 
        spike_data.cxx 
Log Message:
- fixed bug in the trap writing
- fixed fakeexit position bug
- fixed bug in resource modifier

Index: bumper_data.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldobjsdata/bumper_data.cxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- bumper_data.cxx     4 Sep 2002 14:55:13 -0000       1.1
+++ bumper_data.cxx     10 Sep 2002 15:36:44 -0000      1.2
@@ -55,7 +55,7 @@
   void
   BumperData::write_xml (std::ostream& xml)
   {
-    xml << "<worldobj name=\"bumper\">\n\t";
+    xml << "<worldobj type=\"bumper\">\n\t";
     XMLhelper::write_vector_xml(xml, pos);
     xml << "</worldobj>\n\n";
   }

Index: fake_exit_data.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldobjsdata/fake_exit_data.cxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- fake_exit_data.cxx  4 Sep 2002 14:55:13 -0000       1.1
+++ fake_exit_data.cxx  10 Sep 2002 15:36:44 -0000      1.2
@@ -55,7 +55,7 @@
   void
   FakeExitData::write_xml (std::ostream& xml)
   {
-    xml << "<worldobj name=\"fake_exit\">\n\t";
+    xml << "<worldobj type=\"fake_exit\">\n\t";
     XMLhelper::write_vector_xml(xml, pos);
     xml << "</worldobj>\n\n";
   }

Index: guillotine_data.cxx
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/src/worldobjsdata/guillotine_data.cxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- guillotine_data.cxx 4 Sep 2002 14:55:13 -0000       1.1
+++ guillotine_data.cxx 10 Sep 2002 15:36:44 -0000      1.2
@@ -65,7 +65,7 @@
   void
   GuillotineData::write_xml (std::ostream& xml)
   {
-    xml << "<worldobj name=\"guillotine\">\n\t";
+    xml << "<worldobj type=\"guillotine\">\n\t";
     XMLhelper::write_vector_xml(xml, pos);
     xml << "</worldobj>\n\n";
   }

Index: hammer_data.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldobjsdata/hammer_data.cxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- hammer_data.cxx     4 Sep 2002 14:55:13 -0000       1.1
+++ hammer_data.cxx     10 Sep 2002 15:36:44 -0000      1.2
@@ -55,7 +55,7 @@
   void
   HammerData::write_xml (std::ostream& xml)
   {
-    xml << "<worldobj name=\"hammer\">\n\t";
+    xml << "<worldobj type=\"hammer\">\n\t";
     XMLhelper::write_vector_xml(xml, pos);
     xml << "</worldobj>\n\n";
   }

Index: laser_exit_data.cxx
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/src/worldobjsdata/laser_exit_data.cxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- laser_exit_data.cxx 4 Sep 2002 14:55:13 -0000       1.1
+++ laser_exit_data.cxx 10 Sep 2002 15:36:44 -0000      1.2
@@ -55,7 +55,7 @@
   void
   LaserExitData::write_xml (std::ostream& xml)
   {
-    xml << "<worldobj name=\"laser_exit\">\n\t";
+    xml << "<worldobj type=\"laser_exit\">\n\t";
     XMLhelper::write_vector_xml(xml, pos);
     xml << "</worldobj>\n\n";
   }

Index: smasher_data.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldobjsdata/smasher_data.cxx,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- smasher_data.cxx    10 Sep 2002 14:33:08 -0000      1.2
+++ smasher_data.cxx    10 Sep 2002 15:36:44 -0000      1.3
@@ -55,7 +55,7 @@
 void
 SmasherData::write_xml (std::ostream& xml)
 {
-  xml << "<worldobj name=\"smasher\">\n\t";
+  xml << "<worldobj type=\"smasher\">\n\t";
   XMLhelper::write_vector_xml(xml, pos);
   xml << "</worldobj>\n\n";
 }

Index: spike_data.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldobjsdata/spike_data.cxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- spike_data.cxx      4 Sep 2002 14:55:13 -0000       1.1
+++ spike_data.cxx      10 Sep 2002 15:36:44 -0000      1.2
@@ -55,7 +55,7 @@
   void
   SpikeData::write_xml (std::ostream& xml)
   {
-    xml << "<worldobj name=\"spike\">\n\t";
+    xml << "<worldobj type=\"spike\">\n\t";
     XMLhelper::write_vector_xml(xml, pos);
     xml << "</worldobj>\n\n";
   }





reply via email to

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