mirror of
https://github.com/tbamud/tbamud.git
synced 2026-03-14 16:26:33 +01:00
Updated autorun to fix a random syslog numbering bug. (thanks Zizazat) -- Rumble
This commit is contained in:
parent
a7ffa85498
commit
6817812208
4 changed files with 12 additions and 10 deletions
|
|
@ -1525,9 +1525,7 @@ void advance_level(struct char_data *ch)
|
|||
* performance hit because it's not used very often. */
|
||||
int backstab_mult(int level)
|
||||
{
|
||||
if (level <= 0)
|
||||
return 1; /* level 0 */
|
||||
else if (level <= 7)
|
||||
if (level <= 7)
|
||||
return 2; /* level 1 - 7 */
|
||||
else if (level <= 13)
|
||||
return 3; /* level 8 - 13 */
|
||||
|
|
|
|||
|
|
@ -100,7 +100,7 @@ ACMD(do_oasis_qedit)
|
|||
number = atoi(buf1);
|
||||
|
||||
/****************************************************************************/
|
||||
/** Check that the guild isn't already being edited. **/
|
||||
/** Check that the quest isn't already being edited. **/
|
||||
/****************************************************************************/
|
||||
for (d = descriptor_list; d; d = d->next) {
|
||||
if (STATE(d) == CON_QEDIT) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue