From bb49f0e021fb1fbefad44d944233fb1cf72c495c Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Wed, 1 Feb 2012 09:12:54 +0000 Subject: Introducing StringUtils - the place to be if you are a generic string routine :) No more sprintf()! git-svn-id: http://mc-server.googlecode.com/svn/trunk@209 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/cLuaCommandBinder.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'source/cLuaCommandBinder.cpp') diff --git a/source/cLuaCommandBinder.cpp b/source/cLuaCommandBinder.cpp index 5ed3515ca..2e1d504b1 100644 --- a/source/cLuaCommandBinder.cpp +++ b/source/cLuaCommandBinder.cpp @@ -11,7 +11,6 @@ -extern std::vector StringSplit(std::string str, std::string delim); extern bool report_errors(lua_State* lua, int status); cLuaCommandBinder::cLuaCommandBinder() @@ -58,8 +57,11 @@ bool cLuaCommandBinder::BindCommand( const std::string & a_Command, const std::s bool cLuaCommandBinder::HandleCommand( const std::string & a_Command, cPlayer* a_Player ) { - std::vector Split = StringSplit( a_Command, " "); - if( Split.size() == 0 ) return false; + AStringVector Split = StringSplit(a_Command, " "); + if (Split.size() == 0) + { + return false; + } CommandMap::iterator FoundCommand = m_BoundCommands.find( Split[0] ); if( FoundCommand != m_BoundCommands.end() ) -- cgit v1.2.3