- Moved the auction time controls only on Char Servers.
git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@12321 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
@@ -84,13 +84,14 @@ void auction_save(struct auction_data *auction)
|
||||
unsigned int auction_create(struct auction_data *auction)
|
||||
{
|
||||
int j;
|
||||
|
||||
StringBuf buf;
|
||||
SqlStmt* stmt;
|
||||
|
||||
if( !auction )
|
||||
return false;
|
||||
|
||||
auction->timestamp = (int)calc_times + (auction->hours * 3600);
|
||||
|
||||
StringBuf_Init(&buf);
|
||||
StringBuf_Printf(&buf, "INSERT INTO `%s` (`seller_id`,`seller_name`,`buyer_id`,`buyer_name`,`price`,`buynow`,`hours`,`timestamp`,`nameid`,`item_name`,`type`,`refine`,`attribute`", auction_db);
|
||||
for( j = 0; j < MAX_SLOTS; j++ )
|
||||
@@ -114,7 +115,7 @@ unsigned int auction_create(struct auction_data *auction)
|
||||
else
|
||||
{
|
||||
struct auction_data *auction_;
|
||||
int tick = (auction->timestamp - (unsigned int)calc_times) * 1000;
|
||||
int tick = auction->hours * 3600000;
|
||||
|
||||
auction->item.amount = 1;
|
||||
auction->item.identify = 1;
|
||||
|
||||
Reference in New Issue
Block a user