Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update account.c #25

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions account.c
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ ACMD(do_accexp)

if (!*arg2)
{
send_to_char(ch, "Please choose 'good' for good alignment change or 'evil' for evil alignment change. It cost %d account exp for each.\r\n", cost);
send_to_char(ch, "Please choose 'good' for good alignment change or 'evil' for evil alignment change. It costs %d account exp for each.\r\n", cost);
return;
}

Expand All @@ -142,7 +142,7 @@ ACMD(do_accexp)
}
else
{
send_to_char(ch, "Please choose 'good' for good alignment change or 'evil' for evil alignment change. It cost %d account exp for each.\r\n", cost);
send_to_char(ch, "Please choose 'good' for good alignment change or 'evil' for evil alignment change. It costs %d account exp for each.\r\n", cost);
return;
}

Expand Down Expand Up @@ -247,7 +247,7 @@ ACMD(do_accexp)
if (GET_ACCEXP_DESC(ch) >= cost)
{
ch->desc->account->races[j] = i;
send_to_char(ch, "You have unlocked the advanced race '%s' for all character "
send_to_char(ch, "You have unlocked the advanced race '%s' for all characters "
"and future characters on your account!.\r\n",
race_list[i].type);
change_account_xp(ch, -cost); /* this will call save_account() for us */
Expand Down Expand Up @@ -309,14 +309,14 @@ ACMD(do_accexp)
if (j >= MAX_UNLOCKED_CLASSES)
{
send_to_char(ch, "All of your prestige class slots are filled. Please "
"Ask the staff for the limit to be increased.\r\n");
"ask the staff for the limit to be increased.\r\n");
return;
}
if (GET_ACCEXP_DESC(ch) >= cost)
{
ch->desc->account->classes[j] = i;
send_to_char(ch, "You have unlocked the prestige class '%s' for all "
"character and future characters on your account!.\r\n",
"characters and future characters on your account!.\r\n",
CLSLIST_NAME(i));
change_account_xp(ch, -cost); /* this will call save_account() for us */
return;
Expand Down