diff options
author | madmaxoft <github@xoft.cz> | 2013-07-30 22:48:59 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-07-30 22:48:59 +0200 |
commit | e9f18f8b4fcf4ae7891b631765bcc49a4a183220 (patch) | |
tree | 8e44bb38c5602e8b36d595434c03bb00dc396287 /source/World.cpp | |
parent | Added the "Edit Sign" packet sent to the client placing a sign. (diff) | |
download | cuberite-e9f18f8b4fcf4ae7891b631765bcc49a4a183220.tar cuberite-e9f18f8b4fcf4ae7891b631765bcc49a4a183220.tar.gz cuberite-e9f18f8b4fcf4ae7891b631765bcc49a4a183220.tar.bz2 cuberite-e9f18f8b4fcf4ae7891b631765bcc49a4a183220.tar.lz cuberite-e9f18f8b4fcf4ae7891b631765bcc49a4a183220.tar.xz cuberite-e9f18f8b4fcf4ae7891b631765bcc49a4a183220.tar.zst cuberite-e9f18f8b4fcf4ae7891b631765bcc49a4a183220.zip |
Diffstat (limited to '')
-rw-r--r-- | source/World.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/source/World.cpp b/source/World.cpp index b632fe7f9..da29565cb 100644 --- a/source/World.cpp +++ b/source/World.cpp @@ -2364,6 +2364,20 @@ int cWorld::SpawnMob(double a_PosX, double a_PosY, double a_PosZ, int a_EntityTy +void cWorld::TabCompleteUserName(const AString & a_Text, AStringVector & a_Results) +{ + // TODO + // DEBUG: + LOGWARNING("%s: Not implemented yet!", __FUNCTION__); + a_Results.push_back(a_Text + "_world1"); + a_Results.push_back(a_Text + "_world3"); + a_Results.push_back(a_Text + "_world2"); +} + + + + + cFluidSimulator * cWorld::InitializeFluidSimulator(cIniFile & a_IniFile, const char * a_FluidName, BLOCKTYPE a_SimulateBlock, BLOCKTYPE a_StationaryBlock) { AString SimulatorNameKey; |