X-Git-Url: https://jfr.im/git/irc/gameservirc.git/blobdiff_plain/40b9580ba4773e24e9d1ad0a6fdb82c075d52236..af20337cbe2eda7033fe5e0040e843ad13858bf0:/gameserv/gameserv.cpp?ds=sidebyside diff --git a/gameserv/gameserv.cpp b/gameserv/gameserv.cpp index b797ac6..d1b50f7 100644 --- a/gameserv/gameserv.cpp +++ b/gameserv/gameserv.cpp @@ -2844,7 +2844,7 @@ void do_dragon(char *u) notice(s_GameServ, u, "You adjust your %s, tighten your grip on "\ "your %s, and venture into the hot, dark cave. "\ "You are surprised at the angle of descent as you climb "\ - "lower and lower, deeper into the dragon's den."); + "lower and lower, deeper into the dragon's den.", armors[p->level - 1], weapons[p->level - 1]); notice(s_GameServ, u, "You come to the end of the cave to find "\ "a tooth. It is a large tooth... bigger than your torso."\ " Suddenly the darkness lifts from the gleam of an eye "\ @@ -3467,13 +3467,6 @@ bool load_monsters() strcpy(temp->name, strtok(buf, "~")); strcpy(temp->weapon, strtok(NULL, "~")); - /* - temp->strength = stringtoint(strtok(NULL, "~")); - temp->gold = stringtoint(strtok(NULL, "~")); - temp->exp = stringtoint(strtok(NULL, "~")); - temp->maxhp = stringtoint(strtok(NULL, "~")); - temp->hp = temp->maxhp; - */ strcpy(temp->death, strtok(NULL, "~")); levels[level - 1].monsters.insertAtBack_RLN(temp);