I made the suggested changes listed here, I am not a learned
coder by any means so when it gave me a too many
arguments error I got confused. I made the changes as listed
what caused this/has anyone else had this happen?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=767531
This can be fixed by:
adding
do_function(ch, &do_redit, "");
to the change_exit function in olc_act.c after the line
move_char(ch, door, true); /* ROM OLC */
and replacing
sprintf(buf, "link %ld", newvnum);
change_exit(n_fun, ch, buf, door);
in the change_exit function in olc_act.c
with
sprintf(buf, "link %ld", pRoom->vnum);
change_exit(n_fun, ch, buf, rev_dir[door]);
and also replacing
sprintf(buf, "link %s", arg);
change_exit(n_fun, ch, buf, door);
with
sprintf(buf, "link %ld", pRoom->vnum);
change_exit(n_fun, ch, buf, rev_dir[door]);
Logged In: YES
user_id=934528
I made the suggested changes listed here, I am not a learned
coder by any means so when it gave me a too many
arguments error I got confused. I made the changes as listed
what caused this/has anyone else had this happen?