diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-12-02 14:35:42 -0700 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-12-02 14:35:42 -0700 |
commit | 91761b7926c2503664c4db24c5aa44f817384227 (patch) | |
tree | a6c1c5d31593048326f1026fa52997b3003df471 /src/net/ea/specialhandler.cpp | |
parent | d12c93d4d6fc38eb86b5cb8515f4b8f8a7e96b54 (diff) | |
download | mana-91761b7926c2503664c4db24c5aa44f817384227.tar.gz mana-91761b7926c2503664c4db24c5aa44f817384227.tar.bz2 mana-91761b7926c2503664c4db24c5aa44f817384227.tar.xz mana-91761b7926c2503664c4db24c5aa44f817384227.zip |
Centralize netcode handler instances in Net
Instead of each netcode making the global variables and Net referencing them, Net now makes them and the netcodes reference them.
Also remove an innappropriate ChatHandler reference from eA's AdminHandler.
Diffstat (limited to 'src/net/ea/specialhandler.cpp')
-rw-r--r-- | src/net/ea/specialhandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/ea/specialhandler.cpp b/src/net/ea/specialhandler.cpp index 5def63b7..b9335553 100644 --- a/src/net/ea/specialhandler.cpp +++ b/src/net/ea/specialhandler.cpp @@ -67,7 +67,7 @@ /** should always be zero if failed */ #define SKILL_FAILED 0x00 -Net::SpecialHandler *specialHandler; +extern Net::SpecialHandler *specialHandler; namespace EAthena { |