[BUG] shop.h

From: Carlton Colter (carlton@COLTER.COM)
Date: 10/25/02


I think I found a bug in Shop.h
#define WILL_START_FIGHT        1
#define WILL_BANK_MONEY         2

should be:

#define WILL_START_FIGHT        (1 << 0)
#define WILL_BANK_MONEY         (1 << 1)

The only reason I noticed this is because I made some modifications to thop
file so that I have a shop flag for making it a quest shop... then it deals
in quest points.  After making that change it worked like a charm.  Without
that change it always assumed it was a quest shop.

-C.

--
   +---------------------------------------------------------------+
   | FAQ: http://qsilver.queensu.ca/~fletchra/Circle/list-faq.html |
   | Archives: http://post.queensu.ca/listserv/wwwarch/circle.html |
   | Newbie List:  http://groups.yahoo.com/group/circle-newbies/   |
   +---------------------------------------------------------------+



This archive was generated by hypermail 2b30 : 06/25/03 PDT