ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/treasure.h
(Generate patch)

Comparing deliantra/server/include/treasure.h (file contents):
Revision 1.25 by root, Mon Oct 12 14:00:58 2009 UTC vs.
Revision 1.26 by root, Wed Nov 11 23:27:57 2009 UTC

117 static treasurelist *get (const char *name); // find or create 117 static treasurelist *get (const char *name); // find or create
118 static treasurelist *find (const char *name); 118 static treasurelist *find (const char *name);
119}; 119};
120 120
121inline void 121inline void
122object_freezer::put (keyword k, treasurelist *v) 122object_freezer::put (const keyword_string k, treasurelist *v)
123{ 123{
124 put (k, v ? &v->name : (const char *)0); 124 if (expect_true (v))
125 put (k, v->name);
126 else
127 put (k);
125} 128}
126 129
127void create_treasure (treasurelist *t, object *op, int flag, int difficulty, int tries = 0); 130void create_treasure (treasurelist *t, object *op, int flag, int difficulty, int tries = 0);
128 131
129#endif 132#endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines