From aa9a92b4aa515985dbf4d4ff3c31d9f3db042e11 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Wed, 15 Feb 2017 22:45:12 +0100 Subject: [PATCH] =?UTF-8?q?Apply=20new=20naming=20style=20to=20documentati?= =?UTF-8?q?n=20files,=20rename=20meselamp=20to=20=E2=80=9CMesecon=20Lamp?= =?UTF-8?q?=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mesecons_gates/doc/and/description.html | 2 +- mesecons_gates/doc/diode/description.html | 2 +- mesecons_gates/doc/nand/description.html | 2 +- mesecons_gates/doc/nor/description.html | 2 +- mesecons_gates/doc/not/description.html | 2 +- mesecons_gates/doc/or/description.html | 2 +- mesecons_lamp/doc/lamp/description.html | 2 +- mesecons_lamp/init.lua | 2 +- mesecons_luacontroller/doc/luacontroller/description.html | 4 ++-- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/mesecons_gates/doc/and/description.html b/mesecons_gates/doc/and/description.html index eafbeda..528839c 100644 --- a/mesecons_gates/doc/and/description.html +++ b/mesecons_gates/doc/and/description.html @@ -1 +1 @@ -And gates power their output if both inputs (from left and right) are powered. +AND gates power their output if both inputs (from left and right) are powered. diff --git a/mesecons_gates/doc/diode/description.html b/mesecons_gates/doc/diode/description.html index 174fd64..50a4074 100644 --- a/mesecons_gates/doc/diode/description.html +++ b/mesecons_gates/doc/diode/description.html @@ -1 +1 @@ -Mesecon diodes, just like real ones, only transfer power (signals) in one direction only. +Diodes only transfer power (signals) to one direction. diff --git a/mesecons_gates/doc/nand/description.html b/mesecons_gates/doc/nand/description.html index a520fd2..69c1d4f 100644 --- a/mesecons_gates/doc/nand/description.html +++ b/mesecons_gates/doc/nand/description.html @@ -1 +1 @@ -Nand gates do not power their output if both inputs (from left and right) are powered, but power it in every other case. +NAND gates do not power their output if both inputs (from left and right) are powered, but power it in every other case. diff --git a/mesecons_gates/doc/nor/description.html b/mesecons_gates/doc/nor/description.html index cfcd4c0..28d66a4 100644 --- a/mesecons_gates/doc/nor/description.html +++ b/mesecons_gates/doc/nor/description.html @@ -1 +1 @@ -Nor gates only power their output if none of their two inputs is powered. They are basically or gates with a not gate at their output. +NOR gates only power their output if none of their two inputs is powered. They are basically OR gates with a NOT gate at their output. diff --git a/mesecons_gates/doc/not/description.html b/mesecons_gates/doc/not/description.html index 8bd6795..7538dc9 100644 --- a/mesecons_gates/doc/not/description.html +++ b/mesecons_gates/doc/not/description.html @@ -1 +1 @@ -Not gates invert signals, just like a mesecon torch does, but faster. The input is at the opposite side of the output. +NOT gates invert signals, just like a mesecon torch does, but faster. The input is at the opposite side of the output. diff --git a/mesecons_gates/doc/or/description.html b/mesecons_gates/doc/or/description.html index 0a74abd..f7f5539 100644 --- a/mesecons_gates/doc/or/description.html +++ b/mesecons_gates/doc/or/description.html @@ -1 +1 @@ -Or gates power their output if either of their inputs (or both) are powered. You could basically get the same behaviour with two diodes, but or gates save some space. +OR gates power their output if either of their inputs (or both) are powered. You could basically get the same behaviour with two diodes, but OR gates save some space. diff --git a/mesecons_lamp/doc/lamp/description.html b/mesecons_lamp/doc/lamp/description.html index 5bfe6c5..72f24ed 100644 --- a/mesecons_lamp/doc/lamp/description.html +++ b/mesecons_lamp/doc/lamp/description.html @@ -1 +1 @@ -Lamps are effectors that if powered emit light. +Mesecon lamps are effectors that if powered emit light. diff --git a/mesecons_lamp/init.lua b/mesecons_lamp/init.lua index 2157bd7..6f38b27 100644 --- a/mesecons_lamp/init.lua +++ b/mesecons_lamp/init.lua @@ -42,7 +42,7 @@ minetest.register_node("mesecons_lamp:lamp_off", { node_box = mesecon_lamp_box, selection_box = mesecon_lamp_box, groups = {dig_immediate=3, mesecon_receptor_off = 1, mesecon_effector_off = 1}, - description="Attached Lamp", + description="Mesecon Lamp", sounds = default.node_sound_glass_defaults(), mesecons = {effector = { action_on = function (pos, node) diff --git a/mesecons_luacontroller/doc/luacontroller/description.html b/mesecons_luacontroller/doc/luacontroller/description.html index ca14615..dc4087a 100644 --- a/mesecons_luacontroller/doc/luacontroller/description.html +++ b/mesecons_luacontroller/doc/luacontroller/description.html @@ -1,5 +1,5 @@ -The luacontroller is an advanced programmable component. -You can simply code it in the language mesecons uses itself: Lua! +The Lua controller is an advanced programmable component. +You can simply code it in the language Mesecons uses itself: Lua! All the code runs in a sandbox, so it's completely safe (but I won't guarantee that for absolute certainty!). Documentation is available here!