summaryrefslogtreecommitdiff
path: root/computer
diff options
context:
space:
mode:
authorVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2019-04-24 18:59:36 -0400
committerVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2019-04-24 18:59:36 -0400
commita5eef1c5de77fa7770877802e66c3e1c53f9a0da (patch)
tree0f36e64a58e5f5bb7d95be6ae692f58f2ebfe483 /computer
parentdda854cf06f90a04a03844e19c4d4ad220e38fe4 (diff)
downloaddreambuilder_modpack-a5eef1c5de77fa7770877802e66c3e1c53f9a0da.tar
dreambuilder_modpack-a5eef1c5de77fa7770877802e66c3e1c53f9a0da.tar.gz
dreambuilder_modpack-a5eef1c5de77fa7770877802e66c3e1c53f9a0da.tar.bz2
dreambuilder_modpack-a5eef1c5de77fa7770877802e66c3e1c53f9a0da.tar.xz
dreambuilder_modpack-a5eef1c5de77fa7770877802e66c3e1c53f9a0da.zip
update castles, areas, homedecor, plantlife,
gloopblocks, hotbar, inspector, maptools, mesecons, moreblocks, moreores, technic, teleport_request, and worldedit switched to caverealms_lite (with minor fixes by me) switched to CWz's fork of player_textures The homedecor update brings in the big split, and will require you to re-enable all modpack components in order to avoid loss of content.
Diffstat (limited to 'computer')
-rw-r--r--computer/computers.lua2
-rw-r--r--computer/depends.txt2
-rw-r--r--computer/miscitems.lua2
-rw-r--r--computer/tetris.lua4
4 files changed, 5 insertions, 5 deletions
diff --git a/computer/computers.lua b/computer/computers.lua
index b9d3dc4..06b04a9 100644
--- a/computer/computers.lua
+++ b/computer/computers.lua
@@ -1,5 +1,5 @@
-local S = homedecor_i18n.gettext
+local S = homedecor.gettext
-- Amiga 500 lookalike
computer.register("computer:shefriendSOO", {
diff --git a/computer/depends.txt b/computer/depends.txt
index 947d2a7..997cb0b 100644
--- a/computer/depends.txt
+++ b/computer/depends.txt
@@ -1,2 +1,2 @@
default
-homedecor_i18n
+homedecor_common
diff --git a/computer/miscitems.lua b/computer/miscitems.lua
index bbef89b..1eb0634 100644
--- a/computer/miscitems.lua
+++ b/computer/miscitems.lua
@@ -2,7 +2,7 @@
-- This file defines some items in order to not have to depend on other mods.
-local S = homedecor_i18n.gettext
+local S = homedecor.gettext
if (not minetest.get_modpath("homedecor")) then
diff --git a/computer/tetris.lua b/computer/tetris.lua
index 023fc4d..85e9151 100644
--- a/computer/tetris.lua
+++ b/computer/tetris.lua
@@ -1,5 +1,5 @@
-local S = homedecor_i18n.gettext
+local S = homedecor.gettext
local shapes = {
{ { x = {0, 1, 0, 1}, y = {0, 0, 1, 1} } },
@@ -231,7 +231,7 @@ local function step(pos, fields)
local scr = { formsize, background,
t.boardstring, t.previewstring,
draw_shape(t.cur, t.x, t.y, t.rot, boardx, boardy),
- "label[3.8,0.1;"..S("Next...").."]label[3.8,2.7;"..S("Score: "),
+ "label[3.8,0.1;"..S("Next...").."]label[3.8,2.7;"..S("Score: "),
t.score, close, buttons }