ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/common/readable.C
(Generate patch)

Comparing deliantra/server/common/readable.C (file contents):
Revision 1.43 by root, Thu Oct 15 20:45:01 2009 UTC vs.
Revision 1.44 by root, Thu Oct 15 21:40:42 2009 UTC

1/* 1/*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG. 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 * 3 *
4 * Copyright (©) 2005,2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 4 * Copyright (©) 2005,2006,2007,2008,2009 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team 5 * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team
6 * Copyright (©) 1992,2007 Frank Tore Johansen 6 * Copyright (©) 1992,2007 Frank Tore Johansen
7 * 7 *
8 * Deliantra is free software: you can redistribute it and/or modify it under 8 * Deliantra is free software: you can redistribute it and/or modify it under
9 * the terms of the Affero GNU General Public License as published by the 9 * the terms of the Affero GNU General Public License as published by the
1192static const char * 1192static const char *
1193mon_desc (const object *mon) 1193mon_desc (const object *mon)
1194{ 1194{
1195 static dynbuf_text buf; buf.clear (); 1195 static dynbuf_text buf; buf.clear ();
1196 1196
1197 buf.printf (" *** %s ***\n", &mon->name); 1197 buf.printf ("B<< %s >>\r", &mon->name);
1198 buf << describe_item (mon, 0); 1198 buf << describe_item (mon, 0);
1199 1199
1200 return buf; 1200 return buf;
1201} 1201}
1202 1202

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines