<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;f=34" rel="self" type="application/rss+xml" />
  <title>SmaugMuds - Forum: LoP Bugfix List</title>
  <link>https://smaugmuds.afkmods.com/index.php?a=rssfeed&amp;f=34</link>
  <description>The largest Smaug community resource site. - Bugfixes for the LoP codebase will be posted here. These topics can only be edited or replied to by forum moderators. </description>
  <language>en</language>
  <generator>SmaugMuds</generator>
  <ttl>60</ttl>
  <item>
   <title>auth_update crash</title>
   <link>https://smaugmuds.afkmods.com/topic/authupdate-crash-4857/&amp;p=23734#p23734</link>
   <description>in auth.c function auth_update find [code] void auth_update( void ) { CHAR_DATA *vch; AUTH_DATA *auth; int count = 0; bool pfile, authsave = false; for( auth = first_auth; auth; auth = auth-&amp;gt;next ) { [/code] change it to [code] void auth_update( void ) { CHAR_DATA *vch; AUTH_DATA *auth, *auth_next; int count = 0; bool pfile, authsave = false; for( auth = first_auth; auth; auth = auth_next ) { auth_next = auth-&amp;gt;next; [/code] If</description>
   <guid isPermaLink="true">https://smaugmuds.afkmods.com/topic/authupdate-crash-4857/&amp;p=23734#p23734</guid>
   <pubDate>Sun, 24 Dec 2017 00:15:14 CST</pubDate>
   <category>LoP Bugfix List</category>
   <author>nobody@example.com (Remcon)</author>
  </item>
  <item>
   <title>parse description bug</title>
   <link>https://smaugmuds.afkmods.com/topic/parse-description-bug-4855/&amp;p=23732#p23732</link>
   <description>act_info.c function do_cmdtable find [code] ch_printf( ch, &amp;quot;Commands and Number of %s This Run:\r\n&amp;quot;, lag ? &amp;quot;Lags&amp;quot; : &amp;quot;Uses&amp;quot; ); [/code] change it to [code] pager_printf( ch, &amp;quot;Commands and Number of %s This Run:\r\n&amp;quot;, lag ? &amp;quot;Lags&amp;quot; : &amp;quot;Uses&amp;quot; ); [/code] find [code] send_to_char( &amp;quot;\r\n&amp;quot;, ch ); [/code] change it to [code] send_to_pager( &amp;quot;\r\n&amp;quot;, ch ); [/code]</description>
   <guid isPermaLink="true">https://smaugmuds.afkmods.com/topic/parse-description-bug-4855/&amp;p=23732#p23732</guid>
   <pubDate>Sat, 16 Dec 2017 00:08:16 CST</pubDate>
   <category>LoP Bugfix List</category>
   <author>nobody@example.com (Remcon)</author>
  </item>
  <item>
   <title>parse description bug</title>
   <link>https://smaugmuds.afkmods.com/topic/parse-description-bug-4855/&amp;p=23731#p23731</link>
   <description>skills.c function do_skilltable find [code] send_to_char( &amp;quot;Skills and Number of Uses This Run:\r\n&amp;quot;, ch ); [/code] change it to [code] send_to_pager( &amp;quot;Skills and Number of Uses This Run:\r\n&amp;quot;, ch ); [/code] find [code] send_to_char( &amp;quot;\r\n&amp;quot;, ch ); [/code] change it to [code] send_to_pager( &amp;quot;\r\n&amp;quot;, ch ); [/code] </description>
   <guid isPermaLink="true">https://smaugmuds.afkmods.com/topic/parse-description-bug-4855/&amp;p=23731#p23731</guid>
   <pubDate>Fri, 15 Dec 2017 23:44:29 CST</pubDate>
   <category>LoP Bugfix List</category>
   <author>nobody@example.com (Remcon)</author>
  </item>
  <item>
   <title>parse description bug</title>
   <link>https://smaugmuds.afkmods.com/topic/parse-description-bug-4855/&amp;p=23730#p23730</link>
   <description>bti.c function do_bti find [code] set_pager_color( AT_HELP, ch ); [/code] change it to [code] set_char_color( AT_HELP, ch ); [/code] </description>
   <guid isPermaLink="true">https://smaugmuds.afkmods.com/topic/parse-description-bug-4855/&amp;p=23730#p23730</guid>
   <pubDate>Fri, 15 Dec 2017 23:40:17 CST</pubDate>
   <category>LoP Bugfix List</category>
   <author>nobody@example.com (Remcon)</author>
  </item>
  <item>
   <title>parse description bug</title>
   <link>https://smaugmuds.afkmods.com/topic/parse-description-bug-4855/&amp;p=23729#p23729</link>
   <description>news.c function do_news find [code] set_pager_color( AT_HELP, ch ); [/code] change it to [code] set_char_color( AT_HELP, ch ); [/code] </description>
   <guid isPermaLink="true">https://smaugmuds.afkmods.com/topic/parse-description-bug-4855/&amp;p=23729#p23729</guid>
   <pubDate>Fri, 15 Dec 2017 23:00:05 CST</pubDate>
   <category>LoP Bugfix List</category>
   <author>nobody@example.com (Remcon)</author>
  </item>
  <item>
   <title>parse description bug</title>
   <link>https://smaugmuds.afkmods.com/topic/parse-description-bug-4855/&amp;p=23728#p23728</link>
   <description>act_wiz.c do_mstat find [code] /* Should show all affects listed not just ones with matching skills */ for( paf = victim-&amp;gt;first_affect; paf; paf = paf-&amp;gt;next ) { if( ( skill = get_skilltype( paf-&amp;gt;type ) ) ) ch_printf( ch, &amp;quot;&amp;amp;c%s: &amp;amp;w&#039;%s&#039; &amp;quot;, skill_tname[skill-&amp;gt;type], skill-&amp;gt;name ); else ch_printf( ch, &amp;quot;&amp;amp;c%d: &amp;amp;w&#039;Unknown&#039; &amp;quot;, paf-&amp;gt;type ); if( ( paf-&amp;gt;location % REVERSE_APPLY ) == APPLY_STAT ) ch_printf( ch, &amp;quot;Mods %s&amp;quot;, ext_flag_string( &amp;amp;p</description>
   <guid isPermaLink="true">https://smaugmuds.afkmods.com/topic/parse-description-bug-4855/&amp;p=23728#p23728</guid>
   <pubDate>Fri, 15 Dec 2017 22:23:20 CST</pubDate>
   <category>LoP Bugfix List</category>
   <author>nobody@example.com (Remcon)</author>
  </item>
  <item>
   <title>parse description bug</title>
   <link>https://smaugmuds.afkmods.com/topic/parse-description-bug-4855/&amp;p=23727#p23727</link>
   <description>act_info.c function show_compass change [code] ch_printf( ch, &amp;quot;&amp;amp;W%s&amp;amp;w------&amp;amp;W%s&amp;amp;w------&amp;amp;W%s\r\n&amp;quot;, dir_nw, dir_n, dir_ne ); ch_printf( ch, &amp;quot;&amp;amp;W%s&amp;amp;w---&amp;amp;W%s&amp;amp;w&amp;lt;-&amp;amp;G*&amp;amp;w-&amp;gt;&amp;amp;W%s&amp;amp;w---&amp;amp;W%s\r\n&amp;quot;, dir_w, dir_u, dir_d, dir_e ); ch_printf( ch, &amp;quot;&amp;amp;W%s&amp;amp;w------&amp;amp;W%s&amp;amp;w------&amp;amp;W%s\r\n&amp;quot;, dir_sw, dir_s, dir_se ); [/code] to [code] pager_printf( ch, &amp;quot;&amp;amp;W%s&amp;amp;w------&amp;amp;W%s&amp;amp;w------&amp;amp;W%s\r\n&amp;quot;, dir_nw, dir_n, dir_ne ); pager_printf( ch, &amp;quot;&amp;amp;W%s&amp;amp;w---&amp;amp;W%s&amp;amp;w&amp;lt;-&amp;amp;G*&amp;amp;w-&amp;gt;&amp;amp;W%s&amp;amp;w---&amp;amp;W%s\r\n&amp;quot;, dir_w, dir_u, dir_d, </description>
   <guid isPermaLink="true">https://smaugmuds.afkmods.com/topic/parse-description-bug-4855/&amp;p=23727#p23727</guid>
   <pubDate>Fri, 15 Dec 2017 22:15:32 CST</pubDate>
   <category>LoP Bugfix List</category>
   <author>nobody@example.com (Remcon)</author>
  </item>
  <item>
   <title>parse description bug</title>
   <link>https://smaugmuds.afkmods.com/topic/parse-description-bug-4855/&amp;p=23726#p23726</link>
   <description>in wilderness.c function parse_wilderness description find [code] send_to_char( showdescription, ch ); [/code] change it to [code] send_to_pager( showdescription, ch ); [/code] </description>
   <guid isPermaLink="true">https://smaugmuds.afkmods.com/topic/parse-description-bug-4855/&amp;p=23726#p23726</guid>
   <pubDate>Fri, 15 Dec 2017 22:11:22 CST</pubDate>
   <category>LoP Bugfix List</category>
   <author>nobody@example.com (Remcon)</author>
  </item>
  <item>
   <title>parse description bug</title>
   <link>https://smaugmuds.afkmods.com/topic/parse-description-bug-4855/&amp;p=23725#p23725</link>
   <description>Looks like since I&#039;ve never really used the pager in game I hadn&#039;t noticed this, but while testing today found this bug. in act_info.c function parse_description find [code] send_to_char( showdescription, ch ); [/code] change that to [code] send_to_pager( showdescription, ch ); [/code] </description>
   <guid isPermaLink="true">https://smaugmuds.afkmods.com/topic/parse-description-bug-4855/&amp;p=23725#p23725</guid>
   <pubDate>Fri, 15 Dec 2017 21:08:05 CST</pubDate>
   <category>LoP Bugfix List</category>
   <author>nobody@example.com (Remcon)</author>
  </item>
  <item>
   <title>Couple bugs</title>
   <link>https://smaugmuds.afkmods.com/topic/couple-bugs-4854/&amp;p=23724#p23724</link>
   <description>act_obj.c ------------------ function do_locate around line 3143 find [code] for( in_obj = obj; in_obj-&amp;gt;in_obj; in_obj = in_obj-&amp;gt;in_obj ); [/code] change that to [code] for( in_obj = obj; in_obj-&amp;gt;in_obj; in_obj = in_obj-&amp;gt;in_obj ) [/code] function do_call around line 3269 find [code] for( in_obj = obj; in_obj-&amp;gt;in_obj; in_obj = in_obj-&amp;gt;in_obj ); [/code] change that to [code] for( in_obj = obj; in_obj-&amp;gt;in_obj; in_obj = in_obj-&amp;gt;in_obj ) [/code]</description>
   <guid isPermaLink="true">https://smaugmuds.afkmods.com/topic/couple-bugs-4854/&amp;p=23724#p23724</guid>
   <pubDate>Tue, 12 Dec 2017 19:42:15 CST</pubDate>
   <category>LoP Bugfix List</category>
   <author>nobody@example.com (Remcon)</author>
  </item>
 </channel>
</rss>
