From c09773fa0a2231bbb29aad1755c22306427028aa Mon Sep 17 00:00:00 2001 From: root Date: Mon, 21 Dec 2020 12:45:26 +0100 Subject: [PATCH] update --- mods/3d_armor/3d_armor/depends.txt | 1 + mods/3d_armor/3d_armor/init.lua | 5 +- mods/3d_armor/3d_armor/mod.conf | 2 +- mods/moreblocks/CHANGELOG.md | 4 ++ mods/moreblocks/stairsplus/common.lua | 5 +- mods/techpack/releasenotes.md | 21 ++++++ .../techpack_warehouse/box_copper.lua | 11 +++- mods/techpack/techpack_warehouse/box_gold.lua | 11 +++- .../techpack/techpack_warehouse/box_steel.lua | 11 +++- mods/techpack/techpack_warehouse/common.lua | 60 ++++++------------ mods/tubelib2/internal2.lua | 14 ++-- mods/tubelib2/tube_api.lua | 12 ++-- .../locale/unified_inventory.zh_CN.tr | 5 +- .../locale/unified_inventory.zh_TW.tr | 5 +- mods/wine/README.md | 3 +- mods/wine/init.lua | 55 ++++++++++++++-- mods/wine/license.txt | 5 ++ mods/wine/textures/wine_brandy_bottle.png | Bin 0 -> 318 bytes mods/wine/textures/wine_brandy_glass.png | Bin 0 -> 169 bytes mods/wine/textures/wine_champagne_bottle.png | Bin 0 -> 330 bytes mods/wine/textures/wine_champagne_glass.png | Bin 0 -> 199 bytes .../textures/wine_champagne_raw_glass.png | Bin 0 -> 212 bytes .../textures/wine_coffee_liquor_bottle.png | Bin 0 -> 2482 bytes .../textures/wine_coffee_liquor_glass.png | Bin 0 -> 218 bytes mods/xdecor/locale/xdecor.de.tr | 10 ++- 25 files changed, 166 insertions(+), 74 deletions(-) create mode 100644 mods/wine/textures/wine_brandy_bottle.png create mode 100644 mods/wine/textures/wine_brandy_glass.png create mode 100644 mods/wine/textures/wine_champagne_bottle.png create mode 100644 mods/wine/textures/wine_champagne_glass.png create mode 100644 mods/wine/textures/wine_champagne_raw_glass.png create mode 100644 mods/wine/textures/wine_coffee_liquor_bottle.png create mode 100644 mods/wine/textures/wine_coffee_liquor_glass.png diff --git a/mods/3d_armor/3d_armor/depends.txt b/mods/3d_armor/3d_armor/depends.txt index 855baa91..f101e690 100644 --- a/mods/3d_armor/3d_armor/depends.txt +++ b/mods/3d_armor/3d_armor/depends.txt @@ -5,3 +5,4 @@ pova? fire? ethereal? bakedclay? +moreores? diff --git a/mods/3d_armor/3d_armor/init.lua b/mods/3d_armor/3d_armor/init.lua index a804e147..0d7d2936 100644 --- a/mods/3d_armor/3d_armor/init.lua +++ b/mods/3d_armor/3d_armor/init.lua @@ -395,7 +395,10 @@ if armor.config.punch_damage == true then minetest.register_on_punchplayer(function(player, hitter, time_from_last_punch, tool_capabilities) local name = player:get_player_name() - if name then + local name2 = hitter:get_player_name() + if name and name2 and minetest.is_protected(player:get_pos(), "") then + return + elseif name then armor:punch(player, hitter, time_from_last_punch, tool_capabilities) last_punch_time[name] = minetest.get_gametime() end diff --git a/mods/3d_armor/3d_armor/mod.conf b/mods/3d_armor/3d_armor/mod.conf index 311adb5c..ddf6e66f 100644 --- a/mods/3d_armor/3d_armor/mod.conf +++ b/mods/3d_armor/3d_armor/mod.conf @@ -1,4 +1,4 @@ name = 3d_armor depends = default -optional_depends = player_monoids, armor_monoid, pova, fire, ethereal, bakedclay +optional_depends = player_monoids, armor_monoid, pova, fire, ethereal, bakedclay, moreores description = Adds craftable armor that is visible to other players. diff --git a/mods/moreblocks/CHANGELOG.md b/mods/moreblocks/CHANGELOG.md index af7f67ad..11f38fb1 100644 --- a/mods/moreblocks/CHANGELOG.md +++ b/mods/moreblocks/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +### Fixed + +- [Fixed stairs placement over oddly-shaped nodes.](https://github.com/minetest-mods/moreblocks/pull/166) + ## [2.1.0] - 2020-12-14 ### Added diff --git a/mods/moreblocks/stairsplus/common.lua b/mods/moreblocks/stairsplus/common.lua index 15e86520..182e55e9 100644 --- a/mods/moreblocks/stairsplus/common.lua +++ b/mods/moreblocks/stairsplus/common.lua @@ -51,7 +51,10 @@ stairsplus.rotate_node_aux = function(itemstack, placer, pointed_thing) -- and in general for sneak placement local face_pos = minetest.pointed_thing_to_face_pos(placer, pointed_thing) local face_off = vector.subtract(face_pos, under) - local wallmounted = minetest.dir_to_wallmounted(face_off) + + -- we cannot trust face_off to tell us the correct directionif the + -- under node has a non-standard shape, so use the distance between under and above + local wallmounted = minetest.dir_to_wallmounted(vector.subtract(pointed_thing.above, under)) if same_cat and not aux then p2 = under_node.param2 diff --git a/mods/techpack/releasenotes.md b/mods/techpack/releasenotes.md index 050ba076..18f0ed02 100644 --- a/mods/techpack/releasenotes.md +++ b/mods/techpack/releasenotes.md @@ -1,6 +1,27 @@ # Release Notes for ModPack TechPack [techpack] +## V2.04.01 (2020-12-18) + +### Additions + +### Removals + +### Changes +- Suggestion to check replanting against commonly plantable nodes + instead of quarry-able GroundNodes (pull request #60 from oversword) +- Add a on_blast callback to tubes so they update after being destroyed + (pull request #58 from oversword) +- Disallow non-fuel items to be accepted as fuel quarries and harvesters + (pull request #57 from oversword) +- Check harvester protection for each node it attempts to harvest + (pull request #59 from oversword) + +### Fixes +- Warehouse voiding items when both pushing in and pulling out + (issue #61, fixed by oversword) + + ## V2.04.00 (2020-11-20) diff --git a/mods/techpack/techpack_warehouse/box_copper.lua b/mods/techpack/techpack_warehouse/box_copper.lua index 0f9d8b66..d93736bd 100644 --- a/mods/techpack/techpack_warehouse/box_copper.lua +++ b/mods/techpack/techpack_warehouse/box_copper.lua @@ -132,7 +132,7 @@ tubelib.register_node(NODE_NAME, on_push_item = function(pos, side, item) local meta = M(pos) meta:set_string("push_dir", wh.Turn180[side]) - local num = wh.numbers_to_shift(Box, meta, item) + local num = wh.inv_add_item(Box, meta, item) if num > 0 then item:set_count(num) return tubelib.put_item(meta, "shift", item) @@ -146,7 +146,14 @@ tubelib.register_node(NODE_NAME, return tubelib.get_item(M(pos), "main") end, on_unpull_item = function(pos, side, item) - return tubelib.put_item(M(pos), "main", item) + local meta = M(pos) + local num = wh.inv_add_item(Box, meta, item) + if num > 0 then + -- this should never happen, but better safe than sorry + item:set_count(num) + return tubelib.put_item(meta, "shift", item) + end + return true end, on_recv_message = function(pos, topic, payload) diff --git a/mods/techpack/techpack_warehouse/box_gold.lua b/mods/techpack/techpack_warehouse/box_gold.lua index 46c0c5ff..e112ffdc 100644 --- a/mods/techpack/techpack_warehouse/box_gold.lua +++ b/mods/techpack/techpack_warehouse/box_gold.lua @@ -132,7 +132,7 @@ tubelib.register_node(NODE_NAME, on_push_item = function(pos, side, item) local meta = M(pos) meta:set_string("push_dir", wh.Turn180[side]) - local num = wh.numbers_to_shift(Box, meta, item) + local num = wh.inv_add_item(Box, meta, item) if num > 0 then item:set_count(num) return tubelib.put_item(meta, "shift", item) @@ -146,7 +146,14 @@ tubelib.register_node(NODE_NAME, return tubelib.get_item(M(pos), "main") end, on_unpull_item = function(pos, side, item) - return tubelib.put_item(M(pos), "main", item) + local meta = M(pos) + local num = wh.inv_add_item(Box, meta, item) + if num > 0 then + -- this should never happen, but better safe than sorry + item:set_count(num) + return tubelib.put_item(meta, "shift", item) + end + return true end, on_recv_message = function(pos, topic, payload) diff --git a/mods/techpack/techpack_warehouse/box_steel.lua b/mods/techpack/techpack_warehouse/box_steel.lua index 765f0667..e23270b5 100644 --- a/mods/techpack/techpack_warehouse/box_steel.lua +++ b/mods/techpack/techpack_warehouse/box_steel.lua @@ -132,7 +132,7 @@ tubelib.register_node(NODE_NAME, on_push_item = function(pos, side, item) local meta = M(pos) meta:set_string("push_dir", wh.Turn180[side]) - local num = wh.numbers_to_shift(Box, meta, item) + local num = wh.inv_add_item(Box, meta, item) if num > 0 then item:set_count(num) return tubelib.put_item(meta, "shift", item) @@ -146,7 +146,14 @@ tubelib.register_node(NODE_NAME, return tubelib.get_item(M(pos), "main") end, on_unpull_item = function(pos, side, item) - return tubelib.put_item(M(pos), "main", item) + local meta = M(pos) + local num = wh.inv_add_item(Box, meta, item) + if num > 0 then + -- this should never happen, but better safe than sorry + item:set_count(num) + return tubelib.put_item(meta, "shift", item) + end + return true end, on_recv_message = function(pos, topic, payload) diff --git a/mods/techpack/techpack_warehouse/common.lua b/mods/techpack/techpack_warehouse/common.lua index cfe07532..659290eb 100644 --- a/mods/techpack/techpack_warehouse/common.lua +++ b/mods/techpack/techpack_warehouse/common.lua @@ -24,8 +24,6 @@ local COUNTDOWN_TICKS = 2 local CYCLE_TIME = 2 -local Cache = {} - techpack_warehouse.Box = {} techpack_warehouse.Turn180 = {F="B", L="R", B="F", R="L", U="D", D="U"} @@ -169,39 +167,33 @@ function techpack_warehouse.Box:new(attr) return o end -function techpack_warehouse.numbers_to_shift(self, meta, item) - -- check cache - local number = meta:get_string("tubelib_number") - local item_name = item:get_name() - if not Cache[number] then - local inv = meta:get_inventory() - Cache[number] = {} - for idx,items in ipairs(inv:get_list("filter")) do - Cache[number][idx] = items:get_name() - end - end - - -- determine number to shift +-- We can't use the standard function "inv:add_item()" because this function +-- would not allow to add more than the default 99 items per stack. +function techpack_warehouse.inv_add_item(self, meta, item) local num_items = item:get_count() - local inv_size = meta:get_int("inv_size") + local item_name = item:get_name() local inv = meta:get_inventory() + local main_list = inv:get_list("main") - for idx, name in ipairs(Cache[number]) do - if item_name == name then - local stack_size = inv:get_stack("main", idx):get_count() - if stack_size == self.inv_size then -- full? - Cache[number][idx] = "" -- delete for searching - elseif (stack_size + num_items) > self.inv_size then -- limit will be reached? - inv:set_stack("main", idx, ItemStack({name = item_name, count = self.inv_size})) - Cache[number][idx] = "" -- delete for searching - -- search with the rest for further slots - num_items = num_items - (self.inv_size - stack_size) - else - inv:set_stack("main", idx, ItemStack({name = item_name, count = stack_size + num_items})) - return 0 + for idx, stack in ipairs(main_list) do + -- If item configured + if item_name == inv:get_stack("filter", idx):get_name() then + local stack_size = stack:get_count() + -- If there is some space for further items + if stack_size < self.inv_size then + local new_stack_size = math.min(self.inv_size, stack_size + num_items) + main_list[idx] = ItemStack({name = item_name, count = new_stack_size}) + -- calc new number of items + num_items = num_items - (new_stack_size - stack_size) + -- If everything is distributed + if num_items == 0 then + break + end end end end + + inv:set_list("main", main_list) return num_items end @@ -219,8 +211,6 @@ function techpack_warehouse.allow_metadata_inventory_put(self, pos, listname, in if listname == "input" and item_name == stack:get_name() then return math.min(stack:get_count(), self.inv_size - main_stack:get_count()) elseif listname == "filter" and item_name == main_stack:get_name() then - local number = M(pos):get_string("tubelib_number") - Cache[number] = nil return 1 elseif listname == "shift" then return stack:get_count() @@ -230,8 +220,6 @@ end function techpack_warehouse.on_metadata_inventory_put(pos, listname, index, stack, player) if listname == "input" then - local number = M(pos):get_string("tubelib_number") - Cache[number] = nil minetest.after(0.5, move_to_main, pos, index) end end @@ -242,16 +230,12 @@ function techpack_warehouse.allow_metadata_inventory_take(pos, listname, index, end local inv = M(pos):get_inventory() local main_stack = inv:get_stack("main", index) - local number = M(pos):get_string("tubelib_number") if listname == "main" then - Cache[number] = nil minetest.after(0.1, move_to_player_inv, player:get_player_name(), pos, index) return 0 elseif listname == "filter" and main_stack:is_empty() then - Cache[number] = nil return 1 elseif listname == "shift" then - Cache[number] = nil return stack:get_count() end return 0 @@ -265,8 +249,6 @@ function techpack_warehouse.on_receive_fields(self, pos, formname, fields, playe if minetest.is_protected(pos, player:get_player_name()) then return end - local number = M(pos):get_string("tubelib_number") - Cache[number] = nil self.State:state_button_event(pos, fields) end diff --git a/mods/tubelib2/internal2.lua b/mods/tubelib2/internal2.lua index acee6846..20186d78 100644 --- a/mods/tubelib2/internal2.lua +++ b/mods/tubelib2/internal2.lua @@ -84,12 +84,14 @@ function Tube:get_node_lvm(pos) local data = vm:get_data() local param2_data = vm:get_param2_data() local area = VoxelArea:new({MinEdge = MinEdge, MaxEdge = MaxEdge}) - local idx = area:index(pos.x, pos.y, pos.z) - node = { - name = minetest.get_name_from_content_id(data[idx]), - param2 = param2_data[idx] - } - return node + local idx = area:indexp(pos) + if data[idx] and param2_data[idx] then + return { + name = minetest.get_name_from_content_id(data[idx]), + param2 = param2_data[idx] + } + end + return {name="ignore", param2=0} end -- Read param2 from a primary node at the given position. diff --git a/mods/tubelib2/tube_api.lua b/mods/tubelib2/tube_api.lua index 5c3d6903..97b8f657 100644 --- a/mods/tubelib2/tube_api.lua +++ b/mods/tubelib2/tube_api.lua @@ -59,11 +59,13 @@ function tubelib2.get_node_lvm(pos) local param2_data = vm:get_param2_data() local area = VoxelArea:new({MinEdge = MinEdge, MaxEdge = MaxEdge}) local idx = area:indexp(pos) - node = { - name = minetest.get_name_from_content_id(data[idx]), - param2 = param2_data[idx] - } - return node + if data[idx] and param2_data[idx] then + return { + name = minetest.get_name_from_content_id(data[idx]), + param2 = param2_data[idx] + } + end + return {name="ignore", param2=0} end local function update1(self, pos, dir) diff --git a/mods/unified_inventory/locale/unified_inventory.zh_CN.tr b/mods/unified_inventory/locale/unified_inventory.zh_CN.tr index 524ad671..30e15e37 100644 --- a/mods/unified_inventory/locale/unified_inventory.zh_CN.tr +++ b/mods/unified_inventory/locale/unified_inventory.zh_CN.tr @@ -73,6 +73,7 @@ World position=世界位置 Name=名称 HUD text color=HUD文本颜色 -#new - Reset search and display everything=重置搜索并显示所有物品 + +Any item belonging to the @1 group=属于@1组的任何项目 +Any item belonging to the groups @1=属于组@1的任何项目 diff --git a/mods/unified_inventory/locale/unified_inventory.zh_TW.tr b/mods/unified_inventory/locale/unified_inventory.zh_TW.tr index fa81bbc2..3e8d1a17 100644 --- a/mods/unified_inventory/locale/unified_inventory.zh_TW.tr +++ b/mods/unified_inventory/locale/unified_inventory.zh_TW.tr @@ -73,6 +73,7 @@ World position=世界位置 Name=名稱 HUD text color=HUD文本顏色 -#new - Reset search and display everything=重置搜索並顯示所有物品 + +Any item belonging to the @1 group=屬於@1組的任何項目 +Any item belonging to the groups @1=屬於組@1的任何項目 diff --git a/mods/wine/README.md b/mods/wine/README.md index 8db795d4..c2cca5e5 100644 --- a/mods/wine/README.md +++ b/mods/wine/README.md @@ -26,8 +26,9 @@ Change log: - 1.6 - Added bottle of Mead, Cider and Mint-Julep (textures by Darkstalker), re-arranged code, tweaked lucky blocks, updated translations - 1.7 - Added more uses for blue agave (fuel, paper, food, agave syrup) +- 1.8 - Added glass and bottles for Champagne, Brandy and Coffee Liquor (thanks Felfa) -Lucky Blocks: 15 +Lucky Blocks: 18 Wine Mod API diff --git a/mods/wine/init.lua b/mods/wine/init.lua index dd611e82..a31882ad 100644 --- a/mods/wine/init.lua +++ b/mods/wine/init.lua @@ -72,7 +72,9 @@ local ferment = { {"farming:wheat", "wine:glass_wheat_beer"}, {"farming:rice", "wine:glass_sake"}, {"farming:corn", "wine:glass_bourbon"}, - {"farming:baked_potato", "wine:glass_vodka"} + {"farming:baked_potato", "wine:glass_vodka"}, + {"farming:coffee_beans", "wine:glass_coffee_liquor"}, + {"wine:glass_champagne_raw", "wine:glass_champagne"} } if mcl then @@ -125,7 +127,10 @@ local beverages = { {"vodka", "Vodka", true, 2, 3}, {"cider", "Cider", true, 2, 6}, {"mead", "Honey-Mead", true, 4, 5}, - {"mint", "Mint Julep", true, 4, 3} + {"mint", "Mint Julep", true, 4, 3}, + {"brandy", "Brandy", true, 3, 4}, + {"coffee_liquor", "Coffee Liquor", true, 3, 4}, + {"champagne", "Champagne", true, 4, 5} } @@ -213,7 +218,36 @@ for n = 1, #beverages do end --- override to add food group to wine glass +-- brandy recipe +minetest.register_craft({ + type = "cooking", + cooktime = 15, + output = "wine:glass_brandy", + recipe = "wine:glass_wine" +}) + + +-- Raw champagne +if minetest.get_modpath("farming") +and farming.mod and (farming.mod == "undo" or farming.mod == "redo") then + + minetest.register_craftitem("wine:glass_champagne_raw", { + description = "Raw Champagne", + inventory_image = "wine_champagne_raw_glass.png", + groups = {vessel = 1, flammable = 3} + }) + + minetest.register_craft({ + type = "shapeless", + output = "wine:glass_champagne_raw", + recipe = { + "wine:glass_wine", "farming:sugar" + } + }) +end + + +-- override to add food group to wine and brandy glass minetest.override_item("wine:glass_wine", { groups = { food_wine = 1, vessel = 1, dig_immediate = 3, @@ -221,6 +255,13 @@ minetest.override_item("wine:glass_wine", { } }) +minetest.override_item("wine:glass_brandy", { + groups = { + food_brandy = 1, vessel = 1, dig_immediate = 3, + attached_node = 1, alcohol = 1, drink = 1 + } +}) + -- blue agave minetest.register_node("wine:blue_agave", { @@ -351,7 +392,7 @@ end -- Mint Julep recipe if minetest.get_modpath("farming") -and farming.mod and farming.mod == "redo"then +and farming.mod and (farming.mod == "redo" or farming.mod == "undo") then minetest.register_craft({ type = "shapeless", @@ -622,6 +663,9 @@ if minetest.get_modpath("lucky_block") then {"dro", {"wine:glass_bourbon"}, 5}, {"dro", {"wine:glass_vodka"}, 5}, {"dro", {"wine:glass_mint"}, 5}, + {"dro", {"wine:glass_coffee_liquor"}, 5}, + {"dro", {"wine:glass_brandy"}, 5}, + {"dro", {"wine:glass_champagne"}, 5}, {"dro", {"wine:wine_barrel"}, 1}, {"tel", 5, 1}, {"nod", "default:chest", 0, { @@ -637,6 +681,9 @@ if minetest.get_modpath("lucky_block") then {name = "wine:bottle_mead", max = 1}, {name = "wine:bottle_beer", max = 1}, {name = "wine:bottle_wheat_beer", max = 1}, + {name = "wine:bottle_coffee_liquor", max = 1}, + {name = "wine:bottle_brandy", max = 1}, + {name = "wine:bottle_champagne", max = 1}, {name = "wine:blue_agave", max = 4}}}, }) end diff --git a/mods/wine/license.txt b/mods/wine/license.txt index e28b4f25..49512073 100644 --- a/mods/wine/license.txt +++ b/mods/wine/license.txt @@ -37,3 +37,8 @@ Textures by Darkstalker (cc-by-3.0 license) wine_mead_bottle.png wine_mint_bottle.png wine_mint_glass.png + +Textures by Felfa (CC0) + wine_champagne*.png + wine_coffee*.png + wine_brandy*.png diff --git a/mods/wine/textures/wine_brandy_bottle.png b/mods/wine/textures/wine_brandy_bottle.png new file mode 100644 index 0000000000000000000000000000000000000000..6a83a9b5e8d908bd65e6ea406ae79a53eacfa540 GIT binary patch literal 318 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyfdM`tu0Yz^m}P&K;i*KK>lv~y z`a}LdYbZ}Qs>(EecDArS-~9EJ(jWJ08uHB>3oP2ptUJoAyDM$~Jg)oou=d5R60=O+ zm$yq5+*lRdSry$`U*0MSd?cF+G*r4I$S;`TKTdEYv&a;vtkKiOF~p+x=*7ES4GKK0 z4^GYR3DOd||KE3ZQsRc*35$w%^Or4){a#dc;&?*C1_y@-1x0)2i41pxG-o=?6!mEa z^?tPFd@;#vLW|tllxMDwr>i8aEq;Bh!M2?-oc)Wc2!nhRyTcxl27%-S4sn4DcNeb7 o(E9m8KcYbVh2$bGv;4D++;7=>v%bhi0Ug8O>FVdQ&MBb@03|Pq8vp_`=6t@ z`P%J_3*TM?McGP%{DK+&gFsc~gMUB~2TvEr5Q(XC`wnt37;rdwzy4oe*%M)WBU35x zeZs80PgEI=vRNNIVC}iF%~8oc=h+_jN9qc9O{X6J8gLQX+WLsQ+&)gnKZzd27}`&6l&TN5=(TljcQ)i*IeeRWO_D_FbZEak!(NN>oRO^S^g!e0*N>K!b NgQu&X%Q~loCIDoig_{5X literal 0 HcmV?d00001 diff --git a/mods/wine/textures/wine_champagne_glass.png b/mods/wine/textures/wine_champagne_glass.png new file mode 100644 index 0000000000000000000000000000000000000000..812822e292c50cb6d5790795655e6e36b5fa8369 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~xd5LKS0MfG z-@pGe6c2p;_diE*^R?Um@0R`F&+z}*?El|x3)Jv;0#$I81o;Is{D*n+_Uq4#2xVsB3 zXY|=|R*f&glwtnli;RBycVf$A7M{2~!$drQRp!U9_y6ZD@ceHczq{9%i<7C##Mt10 zzk@-8F%Mr&YlhlsQG>HPew<)PXKTE9Mtl942M2te+>}Ha7}ig)DQM0M0J)jL)78&q Iol`;+0Bq4qBLDyZ literal 0 HcmV?d00001 diff --git a/mods/wine/textures/wine_coffee_liquor_bottle.png b/mods/wine/textures/wine_coffee_liquor_bottle.png new file mode 100644 index 0000000000000000000000000000000000000000..d492172437321a59a289bb407d10354650b56533 GIT binary patch literal 2482 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 FO#qmwPw)T$ literal 0 HcmV?d00001 diff --git a/mods/xdecor/locale/xdecor.de.tr b/mods/xdecor/locale/xdecor.de.tr index 61b8ea51..4188623e 100644 --- a/mods/xdecor/locale/xdecor.de.tr +++ b/mods/xdecor/locale/xdecor.de.tr @@ -24,10 +24,8 @@ White Knight=weißes Pferd White Pawn=weißer Bauer White Queen=weiße Dame White Rook=weißer Turm - -You can't dig the chessboard, a game has been started791234567. Reset it first if you're a current player, or dig it again in @1=Das Schachbrett ist während eines Schachspieles nicht abbaubar. Setze das Spiel zurück, falls du ein Mitspieler bist oder versuche es in @1 erneut. -791234567 -You can't reset the chessboard, a game has been started. If you aren't a current player, try again in @1=Das Schachbrett kann nicht zurückgesetzt werdenm da ein Spiel im Gang ist. Versuche es in @1 erneut, falls du kein Mitspieler bist. +You can't dig the chessboard, a game has been started. Reset it first if you're a current player, or dig it again in @1=Das Schachbrett ist während eines Schachspieles nicht abbaubar. Setze das Spiel zurück, falls du ein Mitspieler bist oder versuche es in @1 erneut. +You can't reset the chessboard, a game has been started. If you aren't a current player, try again in @1=Das Schachbrett kann nicht zurückgesetzt werden, da ein Spiel im Gang ist. Versuche es in @1 erneut, falls du kein Mitspieler bist. check=Schach @@ -118,8 +116,8 @@ Potted Geranium=Geranien im Topf Potted Rose=Rosen im Topf Potted Tulip=Tulpen im Topf Potted Viola=Veilchen im Topf -Potted White Dandelion=weiße Löwenzahn im Topf -Potted Yellow Dandelion=gelbe Löwenzahn im Topf +Potted White Dandelion=weißer Löwenzahn im Topf +Potted Yellow Dandelion=gelber Löwenzahn im Topf Prison Door=Verliestür Red Curtain=roter Vorhang Runestone=Runensteinblock