Welcome to the Builder Academy

Question Github issues, bug reports

More
19 Aug 2013 21:39 #4104 by Rumble
So I am trying to familiarize myself more with github and wanted to start transferring bug/idea/typo reports to it for action. Here is our first issue from Parna:
github.com/welcor/tbamud/issues/2

Rumble
The Builder Academy
tbamud.com 9091
rumble@tbamud.com

Please Log in or Create an account to join the conversation.

More
20 Aug 2013 20:20 #4114 by Parnassus
If 8 bits positive is 0-255, then 254 makes sense. I would suggest though changing:

> toggle pagelength 500
Okay, your page length is now set to 255 lines.

to a maximum of 254. This is where the problem hits since as soon as you read something that needs paging, it realizes that, no, you can't have 255 lines. I'd like to know why 20 lines though? Why not 5? or 200? or even 254?

Sorry, I don't understand Github.

Please Log in or Create an account to join the conversation.

More
23 Aug 2013 00:16 - 23 Aug 2013 00:17 #4143 by Rumble
Replied by Rumble on topic Github issues, bug reports
The default pagelength is 22.
Problem fixed by changing:

modify.c 476:

-if ((GET_PAGE_LENGTH(d->character) < 5 || GET_PAGE_LENGTH(d->character) > 254
+if ((GET_PAGE_LENGTH(d->character) < 5 || GET_PAGE_LENGTH(d->character) > 255

Rumble
The Builder Academy
tbamud.com 9091
rumble@tbamud.com
Last edit: 23 Aug 2013 00:17 by Rumble.

Please Log in or Create an account to join the conversation.

Time to create page: 0.212 seconds