aboutsummaryrefslogtreecommitdiff
path: root/src/server.cpp
AgeCommit message (Collapse)Author
2011-12-03Better mod loading error handlingPerttu Ahola
2011-12-03Add world/mods to mod search pathPerttu Ahola
2011-12-03Enforced mod global naming convention and better error reportingPerttu Ahola
2011-12-02Fix script error reporting a bitPerttu Ahola
2011-12-02Fix ActiveObject creation for fast player respawnsPerttu Ahola
2011-12-02Fix sending of player hp (was sent all the time)Perttu Ahola
2011-12-02Script-defined creative inventoryPerttu Ahola
2011-12-02Rename "build" privilege to "interact" (backwards-compatibly, of course)Perttu Ahola
2011-12-02Fix player double damagePerttu Ahola
2011-12-02Print out PROTOCOL_VERSIONs if server is incompatible with clientPerttu Ahola
2011-12-02Don't send objects or map data before definitions have been sentPerttu Ahola
2011-12-01Remove stuff made obsolete by making players more ActiveObject-like and ↵Perttu Ahola
raise protocol version number by one (because it is not compatible at all anymore)
2011-12-01Players are more like objects + related stuffPerttu Ahola
2011-12-01Player-is-SAO WIPPerttu Ahola
2011-12-01Fix processing of the default_password setting. It is now actually used as ↵Kahrl
the plaintext password for new users. Also add /setpassword and /clearpassword server commands that can be used by admins with the PRIV_PASSWORD privilege, and update the /help message.
2011-11-30Reworked the inventory move handling code, hopefully fixed more problems ↵Perttu Ahola
than caused
2011-11-29Proper player inventory and hp modification tracking and sending accordinglyPerttu Ahola
2011-11-29Better version match fail messages from serverPerttu Ahola
2011-11-29Handle items with m_count==0 sanely when placingPerttu Ahola
2011-11-29CraftItem rework and Lua interfaceKahrl
2011-11-29GenericNodeMetadata and an example furnacePerttu Ahola
2011-11-29Initial NodeMetaRef stuffPerttu Ahola
2011-11-29Replace old active block random node modifying things with actual ↵Perttu Ahola
ActiveBlockModifiers
2011-11-29Add chat message callback and send functionsPerttu Ahola
2011-11-29Use log_deregister_thread in EmergeThreadPerttu Ahola
2011-11-29Fix mod dependency sortPerttu Ahola
2011-11-29Warn about unsatisfied dependenciesPerttu Ahola
2011-11-29Make blocks to be loaded from disk when the active block area reaches themPerttu Ahola
2011-11-29Sort mods by dependencies defined by modpath/depends.txt in each mod (not ↵Perttu Ahola
mandatory)
2011-11-29Fix and tune player movement checks (make them very loose)Perttu Ahola
2011-11-29Add IDropAction and related stuffKahrl
2011-11-29Make map generator as much threaded as possible (not much benefit with ↵Perttu Ahola
current generator because of small generator chunk size (a single MapBlock))
2011-11-29Add on_generated hookPerttu Ahola
2011-11-29Improve player movement speed checkingPerttu Ahola
2011-11-29Player movement speed and node access distance checkingPerttu Ahola
2011-11-29on_newplayer and on_respawnplayer callbacksPerttu Ahola
2011-11-29Remove give_initial_stuffPerttu Ahola
2011-11-29Add node definitions in Lua and do not use content_mapnode_init anymore ↵Kahrl
(except in test.cpp)
2011-11-29builtin.luaPerttu Ahola
2011-11-29Add object reference to Lua on_place/dig/punchnode parametersPerttu Ahola
2011-11-29Fix "warning: comparison between signed and unsigned integer expressions"Perttu Ahola
2011-11-29Make map generator more responsivePerttu Ahola
2011-11-29Store metadata as metadata name in node definitionPerttu Ahola
2011-11-29Set block modified flag when node metadata inventory is modifiedPerttu Ahola
2011-11-29Default to saving stuff more often to minimize lag caused by a single savePerttu Ahola
2011-11-29Add reason parameter to setModified and print it out to verbosestream when ↵Perttu Ahola
saving block
2011-11-29Improve LuaEntity velocity/acceleration handling (by kahrl); implement ↵Perttu Ahola
staticdata interface to Lua
2011-11-29Node place/dig Lua callbacksPerttu Ahola
2011-11-29Crafting definition in scriptsPerttu Ahola
2011-11-29Do not expose CONTENT_* stuff in content_mapnode.h and use a name converter ↵Perttu Ahola
wrapper in old code