|
From: Crossfire C. r. messages.
<cro...@li...> - 2013-12-04 03:23:53
|
Revision: 19160
http://sourceforge.net/p/crossfire/code/19160
Author: silvernexus
Date: 2013-12-04 03:23:48 +0000 (Wed, 04 Dec 2013)
Log Message:
-----------
Fixed segfault in unlinked kandora map by removing x and y attributes from map arch, which had caused undesired behavior.
Modified Paths:
--------------
arch/trunk/CHANGES
arch/trunk/system/map.arc
Modified: arch/trunk/CHANGES
===================================================================
--- arch/trunk/CHANGES 2013-12-04 03:18:50 UTC (rev 19159)
+++ arch/trunk/CHANGES 2013-12-04 03:23:48 UTC (rev 19160)
@@ -1,6 +1,12 @@
Changes for SVN top of tree:
==============================================================================
+Commented out the x and y default attributes on map arch.
+They were being added to the x and y values when the arch was placed
+on a map and can cause segfaults by placing the map arch off the map.
+system/map.arc
+SilverNexus 2013-12-03
+
Pixel cleanup on the map arch face.
system/map.base.111.png
SilverNexus 2013-12-03
Modified: arch/trunk/system/map.arc
===================================================================
--- arch/trunk/system/map.arc 2013-12-04 03:18:50 UTC (rev 19159)
+++ arch/trunk/system/map.arc 2013-12-04 03:23:48 UTC (rev 19160)
@@ -4,8 +4,9 @@
slaying /HallOfSelection
race /start/HallsOfSelection
face map.111
-x 16
-y 16
+# Let's see... does this help?
+# x 16
+# y 16
hp 1
sp 1
value 300
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|