version 1.35 | | version 1.36 |
---|
| | |
/* | | /* |
* static char *rcsid_item_c = | | * static char *rcsid_item_c = |
* "$Id: item.c,v 1.35 2003/02/14 05:50:28 garbled Exp $"; | | * "$Id: item.c,v 1.36 2003/03/08 05:35:32 mwedel Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
} | | } |
} | | } |
if(op->stats.exp) | | if(op->stats.exp) |
sprintf(buf+strlen(buf), "(speed %+d)", op->stats.exp); | | sprintf(buf+strlen(buf), "(speed %+lld)", op->stats.exp); |
if(op->stats.wc) | | if(op->stats.wc) |
sprintf(buf+strlen(buf), "(wc%+d)", op->stats.wc); | | sprintf(buf+strlen(buf), "(wc%+d)", op->stats.wc); |
if(op->stats.dam) | | if(op->stats.dam) |
| | |
} | | } |
| | |
if(op->stats.exp) { | | if(op->stats.exp) { |
sprintf(buf,"(speed %+d)",op->stats.exp); | | sprintf(buf,"(speed %+lld)",op->stats.exp); |
strcat(retbuf,buf); | | strcat(retbuf,buf); |
} | | } |
| | |