Skip to content

Instantly share code, notes, and snippets.

View BlockMen's full-sized avatar
☠️
Not active anymore

BlockMen

☠️
Not active anymore
View GitHub Profile
Minetest NeXt - Maintainer rules
================================
1.) Pulls are never merged with 'git merge', merge them with 'git am' (like in minetest or minetest_game)
2.) Fixes can be pushed by every maintainer
3.) History rewrite only within 30 minutes (notice the other maintainers before doin)
4.) New features will only go in if at least 50% agree to the feature
> minetest.exe!std::basic_string<char,std::char_traits<char>,std::allocator<char> >::size() Zeile 1511 + 0x3 Bytes C++
minetest.exe!std::basic_string<char,std::char_traits<char>,std::allocator<char> >::assign(const std::basic_string<char,std::char_traits<char>,std::allocator<char> > & _Right, unsigned int _Roff, unsigned int _Count) Zeile 893 + 0x8 Bytes C++
minetest.exe!std::basic_string<char,std::char_traits<char>,std::allocator<char> >::basic_string<char,std::char_traits<char>,std::allocator<char> >(const std::basic_string<char,std::char_traits<char>,std::allocator<char> > & _Right) Zeile 546 C++
minetest.exe!EmergeManager::setParamsToSettings(Settings * settings) Zeile 401 + 0x19 Bytes C++
minetest.exe!ServerMap::saveMapMeta() Zeile 3455 C++
minetest.exe!ServerMap::save(ModifiedState save_level) Zeile 3339 C++
minetest.exe!ServerMap::~ServerMap() Zeile 2539 C++
minetest.exe!ServerMap::`scalar deleting destructor'() + 0x16 Bytes C++
minetest.exe!Map::drop() Zeile 161 + 0x22 Bytes C
@BlockMen
BlockMen / menu.txt
Created July 30, 2013 11:58
Current minetest.net menu
*Home|./!
*Download|download!
*Mods|mods!
**Popular|mods!
**Mod Releases|http://forum.minetest.net/viewforum.php?id=11!
**Modding General|http://forum.minetest.net/viewforum.php?id=9!
*Texture Packs|texture_packs!
**Popular|texture_packs!
**All|http://forum.minetest.net/viewforum.php?id=4!
*Community|community!
@BlockMen
BlockMen / fix.lua
Created May 24, 2013 19:41
stoneage fix
local torch = "default:torch"
if (minetest.get_modpath("stoneage")) ~= nil then
torch = "stoneage:torch_unlit"
end
minetest.register_craft({
output = torch .. " 4",
recipe = {
{'group:coal'},
{'default:stick'},