Update of /cvsroot/wpdev/wolfpack
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1977
Modified Files:
ChangeLog serverconfig.cpp serverconfig.h
Log Message:
0000273
Index: serverconfig.h
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/serverconfig.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** serverconfig.h 23 Aug 2004 21:37:39 -0000 1.4
--- serverconfig.h 14 Sep 2004 04:20:23 -0000 1.5
***************
*** 101,104 ****
--- 101,105 ----
int niceLevel_;
unsigned short loginPort_;
+ bool enableFeluccaSeason_;
unsigned int logMask_;
bool enableLogin_;
***************
*** 195,198 ****
--- 196,200 ----
// gets
+ bool enableFeluccaSeason() const;
bool hashAccountPasswords() const;
bool convertUnhashedPasswords() const;
***************
*** 753,756 ****
--- 755,763 ----
}
+ inline bool cConfig::enableFeluccaSeason() const
+ {
+ return enableFeluccaSeason_;
+ }
+
inline bool cConfig::overwriteDefinitions() const
{
Index: serverconfig.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/serverconfig.cpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** serverconfig.cpp 9 Sep 2004 05:52:47 -0000 1.7
--- serverconfig.cpp 14 Sep 2004 04:20:23 -0000 1.8
***************
*** 144,147 ****
--- 144,148 ----
// General Group
+ enableFeluccaSeason_ = getBool("General", "Enable Felucca Season", true, true);
showSkillTitles_ = getBool( "General", "ShowSkillTitles", true, true );
skillcap_ = getNumber( "General", "SkillCap", 700, true );
Index: ChangeLog
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -C2 -d -r1.51 -r1.52
*** ChangeLog 14 Sep 2004 03:56:44 -0000 1.51
--- ChangeLog 14 Sep 2004 04:20:23 -0000 1.52
***************
*** 12,15 ****
--- 12,18 ----
- Fixed bug #0000307. (Timers not being deleted with character)
- Added socket.removeobject() + socket.sendobject() methods.
+ - Fixed bug #0000273. (Felucca doesnt have the felucca desolation season)
+ - Added the option "Enable Felucca Season" to the "General" group of the wolfpack.xml configuration file.
+ If enabled the desolation season will be sent to players on the felucca facet.
Wolfpack 12.9.10 Beta (10. September 2004)
|