2002-07-25 Al Riddoch <alriddoch@zepler.org>

* tools/cycmd.cpp, client/CommClient.h, client/CommClient.cpp: Fixed
	  up client code so it does not rely on username being the same as
	  account id.

	* tools/cycmd.cpp: Added look and logout commands to administrate
	  users logged in.

	* server/server.cpp: Fixed metaserver code so it only sends
	  termination packet if metaserver functionality is enabled.

	* server/Connection.h, server/Connection.cpp, server/CommServer.cpp,
	  server/CommClient.h, server/Account.cpp: Fix logouts so they
	  do cause the client connection to be closed.

	* Finished switch from Fire operation to Burn.
This commit is contained in:
Al Riddoch 2002-07-26 16:47:39 +00:00
parent eff1f5b884
commit 4c39bc2ecd
24 changed files with 131 additions and 40 deletions

View file

@ -724,7 +724,7 @@ static PyObject * operation_new(PyObject * self, PyObject * args, PyObject * kwd
op->operation = new Sight(Sight::Instantiate());
} else if (strcmp(type, "set") == 0) {
op->operation = new Set(Set::Instantiate());
} else if (strcmp(type, "fire") == 0) {
} else if (strcmp(type, "burn") == 0) {
op->operation = new Burn(Burn::Instantiate());
} else if (strcmp(type, "action") == 0) {
op->operation = new Action(Action::Instantiate());