[wpdev-commits] wolfpack ChangeLog,1.84,1.85 serverconfig.cpp,1.10,1.11
Brought to you by:
rip,
thiagocorrea
From: Correa <thi...@us...> - 2004-09-29 19:05:38
|
Update of /cvsroot/wpdev/wolfpack In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4012 Modified Files: ChangeLog serverconfig.cpp Log Message: Fix bug #0000342 ( "Show Npc Titles" treated as numeric value, instead of boolean ) Index: serverconfig.cpp =================================================================== RCS file: /cvsroot/wpdev/wolfpack/serverconfig.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** serverconfig.cpp 19 Sep 2004 16:25:36 -0000 1.10 --- serverconfig.cpp 29 Sep 2004 19:05:29 -0000 1.11 *************** *** 163,167 **** cacheMulFiles_ = getBool( "General", "Cache Mul Files", true, true ); categoryTagAddMenu_ = getBool( "General", "Build AddMenu by Category Tags", true, true ); ! showNpcTitles_ = getNumber( "General", "Show Npc Titles", 1, true ); logMask_ = getNumber( "General", "Logging Mask", LOG_ALL, true ); overwriteDefinitions_ = getBool( "General", "Overwrite Definitions", false, true ); --- 163,167 ---- cacheMulFiles_ = getBool( "General", "Cache Mul Files", true, true ); categoryTagAddMenu_ = getBool( "General", "Build AddMenu by Category Tags", true, true ); ! showNpcTitles_ = getBool( "General", "Show Npc Titles", true, true ); logMask_ = getNumber( "General", "Logging Mask", LOG_ALL, true ); overwriteDefinitions_ = getBool( "General", "Overwrite Definitions", false, true ); Index: ChangeLog =================================================================== RCS file: /cvsroot/wpdev/wolfpack/ChangeLog,v retrieving revision 1.84 retrieving revision 1.85 diff -C2 -d -r1.84 -r1.85 *** ChangeLog 28 Sep 2004 09:49:13 -0000 1.84 --- ChangeLog 29 Sep 2004 19:05:28 -0000 1.85 *************** *** 6,9 **** --- 6,10 ---- - Added an onResurrection event. - Hopefully fixed crashbug for NPC pathfinding. + - Fix bug #0000342 ( "Show Npc Titles" treated as numeric value, instead of boolean ) Wolfpack 12.9.11 Beta (26. September 2004) |