From a17ffd75612eb736367fa0bdb3ec1b109c1f762b Mon Sep 17 00:00:00 2001 From: ultramage Date: Fri, 1 Jun 2007 10:57:31 +0000 Subject: Some typo fixing / cleaning git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10658 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/atcommand.c | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) (limited to 'src/map/atcommand.c') diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 36b3964aa..5ec823a61 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -6693,21 +6693,18 @@ int atcommand_skilltree(const int fd, struct map_session_data* sd, const char* c } // Hand a ring with partners name on it to this char -void getring (struct map_session_data *sd) +void getring (struct map_session_data* sd) { - int flag,item_id = 0; + int flag, item_id; struct item item_tmp; - if(sd->status.sex==0) - item_id = 2635; - else - item_id = 2634; + item_id = (sd->status.sex) ? WEDDING_RING_M : WEDDING_RING_F; - memset(&item_tmp,0,sizeof(item_tmp)); - item_tmp.nameid=item_id; - item_tmp.identify=1; - item_tmp.card[0]=255; - item_tmp.card[2]=sd->status.partner_id; - item_tmp.card[3]=sd->status.partner_id >> 16; + memset(&item_tmp, 0, sizeof(item_tmp)); + item_tmp.nameid = item_id; + item_tmp.identify = 1; + item_tmp.card[0] = 255; + item_tmp.card[2] = sd->status.partner_id; + item_tmp.card[3] = sd->status.partner_id >> 16; //Logs (A)dmins items [Lupus] if(log_config.enable_logs&0x400) @@ -6717,7 +6714,6 @@ void getring (struct map_session_data *sd) clif_additem(sd,0,0,flag); map_addflooritem(&item_tmp,1,sd->bl.m,sd->bl.x,sd->bl.y,NULL,NULL,NULL,0); } - } /*========================================== -- cgit v1.2.3-70-g09d2