summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-03-10 23:12:53 +0000
committerzephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-03-10 23:12:53 +0000
commit66773fbfe4b20141c76241c79b53893d7890cfd0 (patch)
tree9b40ea1a413cb6ebd6cdc6d3c1e9784a44b78947
parent5a267de7af95452c9babb3b48f1adc7391c9f133 (diff)
downloadhercules-66773fbfe4b20141c76241c79b53893d7890cfd0.tar.gz
hercules-66773fbfe4b20141c76241c79b53893d7890cfd0.tar.bz2
hercules-66773fbfe4b20141c76241c79b53893d7890cfd0.tar.xz
hercules-66773fbfe4b20141c76241c79b53893d7890cfd0.zip
- Bug ID #1152: Auction System Mail Message Typos
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12338 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--src/char_sql/int_auction.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/char_sql/int_auction.c b/src/char_sql/int_auction.c
index f1021b983..7ae39d7a3 100644
--- a/src/char_sql/int_auction.c
+++ b/src/char_sql/int_auction.c
@@ -155,7 +155,7 @@ static int auction_end_timer(int tid, unsigned int tick, int id, int data)
mail_sendmail(0, "Auction Manager", auction->seller_id, auction->seller_name, "Auction", "Payment for your auction!.", auction->price, NULL);
}
else
- mail_sendmail(0, "Auction Manager", auction->seller_id, auction->seller_name, "Auction", "Sorry, No one buy your item...", 0, &auction->item);
+ mail_sendmail(0, "Auction Manager", auction->seller_id, auction->seller_name, "Auction", "No buyers have been found for your auction.", 0, &auction->item);
ShowInfo("Auction End: id %u.\n", auction->auction_id);
@@ -429,7 +429,7 @@ static void mapif_parse_Auction_bid(int fd)
mapif_Auction_message(auction->buyer_id, 7); // You have failed to win the auction
}
else
- mail_sendmail(0, "Auction Manager", auction->buyer_id, auction->buyer_name, "Auction", "You has placed a higher bid.", auction->price, NULL);
+ mail_sendmail(0, "Auction Manager", auction->buyer_id, auction->buyer_name, "Auction", "You have placed a higher bid.", auction->price, NULL);
}
auction->buyer_id = char_id;
@@ -442,7 +442,7 @@ static void mapif_parse_Auction_bid(int fd)
mail_sendmail(0, "Auction Manager", auction->buyer_id, auction->buyer_name, "Auction", "You have won the auction.", 0, &auction->item);
mapif_Auction_message(char_id, 6); // You have won the auction
- mail_sendmail(0, "Auction Manager", auction->seller_id, auction->seller_name, "Auction", "Payment for your Auction!.", auction->buynow, NULL);
+ mail_sendmail(0, "Auction Manager", auction->seller_id, auction->seller_name, "Auction", "Payment for your auction!.", auction->buynow, NULL);
auction_delete(auction);
return;