<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
 <channel>
  <atom:link href="https://smaugmuds.afkmods.com/index.php?a=rssfeed&amp;t=4909" rel="self" type="application/rss+xml" />
  <title>SmaugMuds - Topic: Mud crash with roomflag nofloor</title>
  <link>https://smaugmuds.afkmods.com/index.php?a=rssfeed&amp;t=4909</link>
  <description>The largest Smaug community resource site. - </description>
  <language>en</language>
  <generator>SmaugMuds</generator>
  <ttl>60</ttl>
  <item>
   <title>Mud crash with roomflag nofloor</title>
   <link>https://smaugmuds.afkmods.com/topic/mud-crash-with-roomflag-nofloor-4909/&amp;p=23955#p23955</link>
   <description>Based on the complete lack of follow-up or any recent reply after myself and others attempted to help this same OP on Nick&#039;s forum, I am not at all surprised that there&#039;s been no response from the OP here either. At least we tried (again).  :rolleyes:  </description>
   <guid isPermaLink="true">https://smaugmuds.afkmods.com/topic/mud-crash-with-roomflag-nofloor-4909/&amp;p=23955#p23955</guid>
   <pubDate>Wed, 4 Nov 2020 13:48:39 CST</pubDate>
   <category>SWFOTE FUSS</category>
   <author>nobody@example.com (GatewaySysop)</author>
  </item>
  <item>
   <title>Mud crash with roomflag nofloor</title>
   <link>https://smaugmuds.afkmods.com/topic/mud-crash-with-roomflag-nofloor-4909/&amp;p=23954#p23954</link>
   <description>lol it logs it and lets you pin point when its happening. had the issue once and using that allowed me to stop crazy crashing while i dig into what was crashing it and when null was being passed.</description>
   <guid isPermaLink="true">https://smaugmuds.afkmods.com/topic/mud-crash-with-roomflag-nofloor-4909/&amp;p=23954#p23954</guid>
   <pubDate>Wed, 21 Oct 2020 17:58:22 CDT</pubDate>
   <category>SWFOTE FUSS</category>
   <author>nobody@example.com (Remcon)</author>
  </item>
  <item>
   <title>Mud crash with roomflag nofloor</title>
   <link>https://smaugmuds.afkmods.com/topic/mud-crash-with-roomflag-nofloor-4909/&amp;p=23953#p23953</link>
   <description>What really needs to be done here is an analysis of the backtrace. I&#039;d suggest having a look through the GDB Tutorial that&#039;s linked in the main menu at the top right and then figuring out why NULL data is being passed. Making the change Remcon suggested will simply mask the issue and it&#039;ll never be found, and will likely go on to cause crashes elsewhere that become even harder to diagnose.</description>
   <guid isPermaLink="true">https://smaugmuds.afkmods.com/topic/mud-crash-with-roomflag-nofloor-4909/&amp;p=23953#p23953</guid>
   <pubDate>Wed, 21 Oct 2020 12:53:00 CDT</pubDate>
   <category>SWFOTE FUSS</category>
   <author>nobody@example.com (Samson)</author>
  </item>
  <item>
   <title>Mud crash with roomflag nofloor</title>
   <link>https://smaugmuds.afkmods.com/topic/mud-crash-with-roomflag-nofloor-4909/&amp;p=23952#p23952</link>
   <description>My understanding from seeing this same question on Nick&#039;s forum was that the issue happened in a variety of places and circumstances, so it would seem a larger problem than just falling.  You need to find out why char_to_room( ) is being called with a NULL value of the pRoomIndex argument.  Is this only happening with falling or elsewhere? If so, where else does it happen? Under what conditions? </description>
   <guid isPermaLink="true">https://smaugmuds.afkmods.com/topic/mud-crash-with-roomflag-nofloor-4909/&amp;p=23952#p23952</guid>
   <pubDate>Wed, 21 Oct 2020 03:16:12 CDT</pubDate>
   <category>SWFOTE FUSS</category>
   <author>nobody@example.com (GatewaySysop)</author>
  </item>
  <item>
   <title>Mud crash with roomflag nofloor</title>
   <link>https://smaugmuds.afkmods.com/topic/mud-crash-with-roomflag-nofloor-4909/&amp;p=23951#p23951</link>
   <description>[code] void char_to_room( CHAR_DATA *ch, ROOM_INDEX_DATA *pRoomIndex ) { OBJ_DATA *obj; if ( !ch ) { bug( &amp;quot;Char_to_room: NULL ch!&amp;quot;, 0 ); return; } if( !get_room_index( pRoomIndex-&amp;gt;vnum ) ) pRoomIndex = NULL; [/code] id suggest maybe changing that last if check to [code] if( !pRoomIndex || !get_room_index( pRoomIndex-&amp;gt;vnum ) ) [/code] Can even try to handle it and give some log info to protect it from crashing there if you want. In mine it looks lik</description>
   <guid isPermaLink="true">https://smaugmuds.afkmods.com/topic/mud-crash-with-roomflag-nofloor-4909/&amp;p=23951#p23951</guid>
   <pubDate>Fri, 16 Oct 2020 17:21:44 CDT</pubDate>
   <category>SWFOTE FUSS</category>
   <author>nobody@example.com (Remcon)</author>
  </item>
  <item>
   <title>Mud crash with roomflag nofloor</title>
   <link>https://smaugmuds.afkmods.com/topic/mud-crash-with-roomflag-nofloor-4909/&amp;p=23950#p23950</link>
   <description>it&#039;s strange, because the room does exist. in fact if there is no exit down does not run the nofloor</description>
   <guid isPermaLink="true">https://smaugmuds.afkmods.com/topic/mud-crash-with-roomflag-nofloor-4909/&amp;p=23950#p23950</guid>
   <pubDate>Tue, 13 Oct 2020 15:32:41 CDT</pubDate>
   <category>SWFOTE FUSS</category>
   <author>nobody@example.com (Gunner)</author>
  </item>
  <item>
   <title>Mud crash with roomflag nofloor</title>
   <link>https://smaugmuds.afkmods.com/topic/mud-crash-with-roomflag-nofloor-4909/&amp;p=23949#p23949</link>
   <description>[quote=Gunner] [code]#0  0x00000000004ddd52 in char_to_room (ch=0x12e7490, pRoomIndex=0x0) at handler.c:1098[/code] [/quote] pRoomIndex = 0x0 means that RoomIndex was NULL, or non-existant.</description>
   <guid isPermaLink="true">https://smaugmuds.afkmods.com/topic/mud-crash-with-roomflag-nofloor-4909/&amp;p=23949#p23949</guid>
   <pubDate>Tue, 13 Oct 2020 12:37:58 CDT</pubDate>
   <category>SWFOTE FUSS</category>
   <author>nobody@example.com (InfiniteAxis)</author>
  </item>
  <item>
   <title>Mud crash with roomflag nofloor</title>
   <link>https://smaugmuds.afkmods.com/topic/mud-crash-with-roomflag-nofloor-4909/&amp;p=23948#p23948</link>
   <description>Hi. I&#039;m using codebase Swfote 2.1. when I use the nofloor flag in a room and i&#039;m falling down, the mud crashess. The error is: [code]#0  0x00000000004ddd52 in char_to_room (ch=0x12e7490, pRoomIndex=0x0) at handler.c:1098[/code] That line of handler.c is: [code]void char_to_room( CHAR_DATA *ch, ROOM_INDEX_DATA *pRoomIndex ) { OBJ_DATA *obj; if ( !ch ) { bug( &amp;quot;Char_to_room: NULL ch!&amp;quot;, 0 ); return; } if( !get_room_index( pRoomIndex-&amp;gt;vnum ) ) pRoomIndex = </description>
   <guid isPermaLink="true">https://smaugmuds.afkmods.com/topic/mud-crash-with-roomflag-nofloor-4909/&amp;p=23948#p23948</guid>
   <pubDate>Tue, 13 Oct 2020 08:23:06 CDT</pubDate>
   <category>SWFOTE FUSS</category>
   <author>nobody@example.com (Gunner)</author>
  </item>
 </channel>
</rss>
