Login
User Name:

Password:



Register
Forgot your password?
Yaeger areas
Author: Yaeger
Submitted by: Cyberthrope
The City of Anon
Author: Yaeger
Submitted by: Cyberthrope
The Walls of Anon - Smaug
Author: Yaeger
Submitted by: Cyberthrope
LOP 1.39
Author: Remcon
Submitted by: Remcon
AFKMud 2.1.4
Author: AFKMud Team
Submitted by: Samson
CommonCrawl, Yahoo!

Members: 0
Guests: 2
Stats
Files
Topics
Posts
Members
Newest Member
374
3,304
16,407
557
Kerd
» SmaugMuds.org » Codebases » SWR FUSS » do_clan_withdraw/donate, char...
Forum Rules | Mark all | Recent Posts

do_clan_withdraw/donate, character not saved
< Newer Topic :: Older Topic >

Pages:<< prev 1 next >>
Post is unread #1 Oct 22, 2009, 10:34 pm
Go to the bottom of the page Go to the top of the page


Caius
Magician
GroupMembers
Posts117
JoinedJan 29, 2006
WWW

clans.c, do_clan_withdraw() and do_clan_donate(), at the bottom
Code:
/* This example is do_clan_withdraw() */
clan->funds -= amount;
ch->gold += amount;
save_clan ( clan );


Change to:
Code:
clan->funds -= amount;
ch->gold += amount;
save_char_obj( ch );
save_clan ( clan );


Add save_char_obj to do_clan_donate as well in the same manner.

Money is deducted from clan and added to character. The clan is saved to disk, while the character is not. In case of a crash or similar, the money will simply vanish. .........................
SWR2 Refactor - The improved SWR 2.0 codebase.
       
Post is unread #2 Oct 30, 2009, 7:26 pm
Go to the bottom of the page Go to the top of the page
ayuri
Magician
GroupMembers
Posts147
JoinedJun 13, 2008

Correct me if I'm wrong here, but by calling save_char_obj() doesn't that save the clan data anyway if they are in a clan? Seeing how only clan members would have access to that.

Is it worth saving the clan data twice?

Just wondering.
ayuri .........................
"There is a lesson here for ambitious system architects: the most dangerous enemy of a better solution is an existing codebase that is just good enough."
-- Eric S. Raymond: The Art of Unix Programming
       
Post is unread #3 Oct 30, 2009, 8:17 pm
Go to the bottom of the page Go to the top of the page


Caius
Magician
GroupMembers
Posts117
JoinedJan 29, 2006
WWW

Yeah, you're right. But the bug still remains. The character isn't saved. .........................
SWR2 Refactor - The improved SWR 2.0 codebase.
       
Pages:<< prev 1 next >>