Login
User Name:

Password:



Register
Forgot your password?
LOP Building Guide v1.0
Author: Hanaisse
Submitted by: Hanaisse
Reset Guide
Author: Hanaisse
Submitted by: Hanaisse
LOP 1.38r2
Author: Remcon
Submitted by: Remcon
LOP 1.37
Author: Remcon
Submitted by: Remcon
LOP 1.36
Author: Remcon
Submitted by: Remcon
Yahoo! Slurp, Baiduspider

Members: 0
Guests: 5
Stats
Files
Topics
Posts
Members
Newest Member
369
3,185
15,632
526
Craty####
» 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
Posts100
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
Posts110
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
Posts100
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 >>