Login
User Name:

Password:



Register

Forgot your password?
do_owhere recursive
Author: Khonsu
Submitted by: Khonsu
Changes list / Addchange
Author: Khonsu
Submitted by: Khonsu
6Dragons mp3 sound pack
Author: Vladaar
Submitted by: Vladaar
AFKMud 2.2.3
Author: AFKMud Team
Submitted by: Samson
SWFOTEFUSS 1.5
Author: Various
Submitted by: Samson
Users Online
AhrefsBot

Members: 0
Guests: 25
Stats
Files
Topics
Posts
Members
Newest Member
489
3,791
19,644
596
Elwood

Today's Birthdays
RapidRunner (39), ToadVile (39), Deathbringer (39)
» SmaugMuds » Codebases » LoP Codebase » minor bug boards.c do_bset
Forum Rules | Mark all | Recent Posts

minor bug boards.c do_bset
< Newer Topic :: Older Topic >

Pages:<< prev 1 next >>
Post is unread #1 Jul 25, 2014 12:12 am   
Go to the top of the page
Go to the bottom of the page

Guest - (Unregistered)

 
Hello,

Just was reviewing the boards.c file and noticed that there are a %s that should be %d.

That is for when bset remove and bset post is issued I believe.

Post is unread #2 Jul 25, 2014 3:35 pm   
Go to the top of the page
Go to the bottom of the page

Remcon
Geomancer
GroupAdministrators
Posts1,917
JoinedJul 26, 2005

 
   if( !str_cmp( arg2, "post" ) )
   {
      board->min_post_level = URANGE( 0, value, ( PERM_MAX - 1 ) );
      write_boards_txt( );
      ch_printf( ch, "Post set to %s. (minimum posting level)\r\n", perms_flag[board->min_post_level] );
      return;
   }

   if( !str_cmp( arg2, "remove" ) )
   {
      board->min_remove_level = URANGE( 0, value, ( PERM_MAX - 1 ) );
      write_boards_txt( );
      ch_printf( ch, "Remove set to %s. (minimum remove level)\r\n", perms_flag[board->min_remove_level] );
      return;
   }

It is probably you modified it to not use the perms_flag stuff which would then require it to be %d instead, thanks for the heads up though but these look fine. If you do find any issues though please mention them so i can look into them and make sure they are how they need to be :)

Pages:<< prev 1 next >>