mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
* [Commands] Cleanup #object Command # Notes - Cleanup messages and logic. - Introduce enum for object types. - Set ground work for object manipulation similar to door manipulation. * Update object_manipulation.cpp * Final push * Update client_packet.cpp * Update object_manipulation.cpp * Update object_manipulation.cpp * Update object.h * Update client_packet.cpp * Update client_packet.cpp * Push. * Update version.h * Update database_update_manifest.cpp * Update zone.cpp
8 lines
159 B
C++
Executable File
8 lines
159 B
C++
Executable File
#include "../client.h"
|
|
#include "object_manipulation.h"
|
|
|
|
void command_object(Client *c, const Seperator *sep)
|
|
{
|
|
ObjectManipulation::CommandHandler(c, sep);
|
|
}
|