summaryrefslogtreecommitdiff
path: root/po/th/minetest.po
diff options
context:
space:
mode:
authorcafou <weblate@ptitux.org>2021-01-31 15:23:54 +0000
committersfan5 <sfan5@live.de>2021-02-23 18:26:45 +0100
commita4d57b4a16d62edba4e4032fe2cda6370758ea8f (patch)
tree757d850a589e8c235b974fc7dbabf45f5bdd084c /po/th/minetest.po
parentac3d5d08733b93a0e21e34fb28b3f9a2bac30951 (diff)
downloadminetest-a4d57b4a16d62edba4e4032fe2cda6370758ea8f.tar.gz
minetest-a4d57b4a16d62edba4e4032fe2cda6370758ea8f.tar.bz2
minetest-a4d57b4a16d62edba4e4032fe2cda6370758ea8f.zip
Translated using Weblate (French)
Currently translated at 96.7% (1309 of 1353 strings)
Diffstat (limited to 'po/th/minetest.po')
0 files changed, 0 insertions, 0 deletions
an> This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "mapgen_singlenode.h" #include "voxel.h" #include "mapblock.h" #include "mapnode.h" #include "map.h" #include "nodedef.h" #include "voxelalgorithms.h" #include "emerge.h" MapgenSinglenode::MapgenSinglenode(int mapgenid, MapgenParams *params, EmergeManager *emerge) : Mapgen(mapgenid, params, emerge) { flags = params->flags; INodeDefManager *ndef = emerge->ndef; c_node = ndef->getId("mapgen_singlenode"); if (c_node == CONTENT_IGNORE) c_node = CONTENT_AIR; MapNode n_node(c_node); set_light = (ndef->get(n_node).sunlight_propagates) ? LIGHT_SUN : 0x00; } MapgenSinglenode::~MapgenSinglenode() { } //////////////////////// Map generator void MapgenSinglenode::makeChunk(BlockMakeData *data)