summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNemo08 <bigblacklazycat@gmail.com>2012-07-14 02:51:26 +0400
committerNemo08 <bigblacklazycat@gmail.com>2012-07-14 02:51:26 +0400
commit274d4b78b0a28e8f71ee22b7bdadf0bd94905384 (patch)
tree83cc36d2f6cc70229fb4722dcf19948b04becab7
parent104bbf67dd0cf73df45d9be9b773c6446fdcc8a5 (diff)
downloadpipeworks-274d4b78b0a28e8f71ee22b7bdadf0bd94905384.tar
pipeworks-274d4b78b0a28e8f71ee22b7bdadf0bd94905384.tar.gz
pipeworks-274d4b78b0a28e8f71ee22b7bdadf0bd94905384.tar.bz2
pipeworks-274d4b78b0a28e8f71ee22b7bdadf0bd94905384.tar.xz
pipeworks-274d4b78b0a28e8f71ee22b7bdadf0bd94905384.zip
added .gitignore for temp Kate files, added depends.txt for "default"
-rw-r--r--.gitignore1
-rw-r--r--depends.txt2
-rw-r--r--init.lua~69
3 files changed, 3 insertions, 69 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..b25c15b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+*~
diff --git a/depends.txt b/depends.txt
new file mode 100644
index 0000000..3a7daa1
--- /dev/null
+++ b/depends.txt
@@ -0,0 +1,2 @@
+default
+
diff --git a/init.lua~ b/init.lua~
deleted file mode 100644
index a101686..0000000
--- a/init.lua~
+++ /dev/null
@@ -1,69 +0,0 @@
--- Pipes mod by VanessaE
--- 2012-06-12
---
-
--- Entirely my own code. This mod merely supplies enough nodes to build
--- a bunch of pipes in all directions and with all types of junctions.
---
--- License: WTFPL
---
-
-local DEBUG = 1
-
--- Local Functions
-
-local dbg = function(s)
- if DEBUG == 1 then
- print('[PIPES] ' .. s)
- end
-end
-
--- Nodes
-
-minetest.register_node("pipes:vertical", {
- description = "Pipe (vertical)",
- drawtype = "nodebox",
- tile_images = {"pipes_pipe_side_empty.png"},
- paramtype = "light",
--- paramtype2 = "facedir",
- selection_box = {
- type = "fixed",
- fixed = { -0.15, -0.5, -0.15, 0.15, 0.5, 0.15 },
- },
- node_box = {
- type = "fixed",
- fixed = {
- { -0.15, -0.5 , -0.15, 0.15, -0.45, 0.15 },
- { -0.1 , -0.45, -0.1 , 0.1 , 0.45, 0.1 },
- { -0.15, 0.45, -0.15, 0.15, 0.5 , 0.15 },
- }
- },
- groups = {snappy=3},
- sounds = default.node_sound_wood_defaults(),
- walkable = true,
-})
-
-minetest.register_node("pipes:horizontal", {
- description = "Pipe (horizontal)",
- drawtype = "nodebox",
- tile_images = {"pipes_pipe_side_empty.png"},
- paramtype = "light",
- paramtype2 = "facedir",
- selection_box = {
- type = "fixed",
- fixed = { -0.5, -0.15, -0.15, 0.5, 0.15, 0.15 },
- },
- node_box = {
- type = "fixed",
- fixed = {
- { -0.5 , -0.15, -0.15, -0.45, 0.15, 0.15 },
- { -0.45, -0.1 , -0.1 , 0.45, 0.1 , 0.1 },
- { 0.45, -0.15, -0.15, 0.5 , 0.15, 0.15 },
- }
- },
- groups = {snappy=3},
- sounds = default.node_sound_wood_defaults(),
- walkable = true,
-})
-
-print("[Pipes] Loaded!")