Permalink
Please sign in to comment.
Showing
with
1,280 additions
and 363 deletions.
- +2 −0 CMakeLists.txt
- +1 −0 CONTRIBUTORS
- +43 −8 MCServer/Plugins/APIDump/APIDesc.lua
- +10 −0 MCServer/Plugins/APIDump/main_APIDump.lua
- +1 −1 MCServer/Plugins/Core
- +2 −2 MCServer/README.txt
- +1 −1 MCServer/crafting.txt
- +2 −0 MCServer/furnace.txt
- +1 −1 MCServer/webadmin/template.lua
- +1 −1 Tools/ProtoProxy/CMakeLists.txt
- +1 −1 app.yml
- +1 −1 lib/SQLiteCpp
- +1 −1 lib/libevent
- +1 −1 lib/polarssl
- +5 −6 lib/polarssl.cmake
- +1 −1 src/Bindings/CMakeLists.txt
- +31 −1 src/Bindings/LuaState.cpp
- +4 −0 src/Bindings/LuaState.h
- +77 −7 src/Bindings/ManualBindings.cpp
- +135 −1 src/BlockArea.cpp
- +27 −1 src/BlockArea.h
- +1 −0 src/Blocks/BlockHandler.cpp
- +1 −1 src/CMakeLists.txt
- +101 −2 src/CheckBasicStyle.lua
- +0 −1 src/Entities/Entity.cpp
- +1 −1 src/Entities/Player.h
- +2 −5 src/Mobs/AggressiveMonster.cpp
- +2 −0 src/Mobs/CMakeLists.txt
- +178 −187 src/Mobs/Monster.cpp
- +43 −38 src/Mobs/Monster.h
- +389 −0 src/Mobs/Path.cpp
- +150 −0 src/Mobs/Path.h
- +0 −1 src/Mobs/Pig.cpp
- +1 −1 src/Mobs/Sheep.cpp
- +1 −20 src/Mobs/Skeleton.cpp
- +2 −3 src/Mobs/Skeleton.h
- +1 −1 src/Mobs/Villager.cpp
- +2 −2 src/Mobs/Wolf.cpp
- +0 −23 src/Mobs/Zombie.cpp
- +3 −5 src/Mobs/Zombie.h
- +6 −1 src/OSSupport/File.h
- +1 −1 src/PolarSSL++/CMakeLists.txt
- +2 −2 src/Protocol/Protocol17x.cpp
- +2 −2 src/Protocol/Protocol18x.cpp
- +1 −1 src/Protocol/ProtocolRecognizer.h
- +19 −19 src/Server.cpp
- +4 −4 src/SetChunkData.cpp
- +6 −4 src/SetChunkData.h
- +1 −0 src/Vector3.h
- +2 −2 src/World.cpp
- +1 −1 src/WorldStorage/WSSAnvil.cpp
- +9 −0 src/main.cpp
Submodule Core
updated
from 57a0bd to ea0ab9
Submodule SQLiteCpp
updated
from 55edad to b17195
Submodule libevent
updated
from 62eaa8 to de2bb6
Submodule polarssl
updated
from 38f47a to 4f4c5b
| @@ -1,11 +1,10 @@ | ||
| if(NOT TARGET polarssl) | ||
| # This script includes PolarSSL, if not already included. | ||
| # It is needed for when multiple projects reference PolarSSL. | ||
| if(NOT TARGET mbedtls) | ||
| message("including polarssl") | ||
| set(ENABLE_TESTING OFF CACHE BOOL "Disable tests") | ||
| set(ENABLE_PROGRAMS OFF CACHE BOOL "Disable programs") | ||
| if (SELF_TEST) | ||
| add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/polarssl/ ${CMAKE_CURRENT_BINARY_DIR}/lib/polarssl) | ||
| else() | ||
| add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/polarssl/ ${CMAKE_CURRENT_BINARY_DIR}/lib/polarssl EXCLUDE_FROM_ALL) | ||
| endif() | ||
| add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/polarssl/ ${CMAKE_CURRENT_BINARY_DIR}/lib/polarssl EXCLUDE_FROM_ALL) | ||
| endif() |
Oops, something went wrong.
0 comments on commit
dc89d7b