diff --git a/mods/poop/init.lua b/mods/poop/init.lua
index ff64a95..c923047 100644
--- a/mods/poop/init.lua
+++ b/mods/poop/init.lua
@@ -201,6 +201,26 @@ minetest.register_node("poop:box", {
 	}
 })
 
+minetest.register_node("poop:ladder_steel", {
+	description = "Ladder",
+	drawtype = "signlike",
+	tiles = {"ladder.png"},
+	paramtype = "light",
+	paramtype2 = "wallmounted",
+	sunlight_propagates = true,
+	walkable = false,
+	climbable = true,
+	is_ground_content = false,
+	selection_box = {
+		type = "wallmounted",
+		--wall_top = = <default>
+		--wall_bottom = = <default>
+		--wall_side = = <default>
+	},
+	groups = {cracky = 2},
+})
+
+
 -- make a tool called flashlight that can be used to light up the world
 minetest.register_tool("poop:flashlight", {
 	description = "Flashlight",
@@ -250,8 +270,15 @@ minetest.register_node("poop:Poop", {
 
 minetest.register_node("poop:tv", {
 	description = "CRT TV",
-	tiles = {"PC2.png", "PC2.png","PC2.png","PC.png","PC2.png","PC2.png"},
-	
+	tiles = {
+		"PC2.png", 
+		"PC2.png",
+		"PC2.png",
+		"PC2.png",
+		"PC2.png",
+		"PC.png"
+	},
+	paramtype2 = "facedir",
 	drop = 'poop:Poop', groups = {cracky=3, stone=1},
 })
 
@@ -311,6 +338,14 @@ minetest.register_node("poop:Poop2", {
 	drop = 'poop:Poop', groups = {cracky=3, stone=1},
 })
 
+minetest.register_node("poop:glowing_block", {
+	description = "Glowing Block",
+	tiles = {"glowing_block.png"},
+	
+	drop = 'poop:glowing_block', groups = {cracky=3, stone=1},
+	light_source = 14
+})
+
 minetest.register_node("poop:flux_capacitor", {
 	description = "Flux Capacitor from Back to the Future",
 	tiles = {"fluxcap2.png", "fluxcap2.png","fluxcap2.png","fluxcap.png","fluxcap2.png","fluxcap2.png"},
diff --git a/mods/poop/textures/glowing_block.png b/mods/poop/textures/glowing_block.png
new file mode 100644
index 0000000..a23ca57
Binary files /dev/null and b/mods/poop/textures/glowing_block.png differ
diff --git a/mods/poop/textures/ladder.png b/mods/poop/textures/ladder.png
new file mode 100644
index 0000000..9bd67be
Binary files /dev/null and b/mods/poop/textures/ladder.png differ