diff options
author | FaceDeer <derksenmobile@gmail.com> | 2017-02-04 23:08:38 -0700 |
---|---|---|
committer | FaceDeer <derksenmobile@gmail.com> | 2017-02-04 23:08:38 -0700 |
commit | c57582e77570a383b6d094cbd26bc350f3233dd7 (patch) | |
tree | a0ab700a9ec952119e3d6cdc0993010f7271f5da /class_layout.lua | |
parent | 7a044ec4e9eb0d178678c57ec92cf2ee1e8b1a3c (diff) |
Internationalization support
What a lot of strings.
Diffstat (limited to 'class_layout.lua')
-rw-r--r-- | class_layout.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/class_layout.lua b/class_layout.lua index 779568b..0aa139e 100644 --- a/class_layout.lua +++ b/class_layout.lua @@ -43,7 +43,7 @@ function DigtronLayout.create(pos, player) self.contains_protected_node = false -- used to indicate if at least one node in this digtron array is protected from the player. self.controller = {x=pos.x, y=pos.y, z=pos.z} --Make a deep copy of the pos parameter just in case the calling code wants to play silly buggers with it - table.insert(self.all, get_node_image(pos, minetest.get_node(pos))) -- We never visit the source node, so insert it into the all table a priori. Revisit this if a controller node is created that contains fuel or inventory or whatever. + table.insert(self.all, get_node_image(pos, minetest.get_node(pos))) -- We never visit the source node, so insert it into the all table a priori. Revisit this design decision if a controller node is created that contains fuel or inventory or whatever. self.extents.max_x = pos.x self.extents.min_x = pos.x |