3 Commit-ok 197e85542a ... 83d64cbc01

Szerző SHA1 Üzenet Dátum
  BlueBird51 83d64cbc01 Should I indent it 1 or 2 spaces, due to the blank line? 11 hónapja
  BlueBird51 16c1f8488e This is art, guys: lighting the formatting people on fire 11 hónapja
  BlueBird51 2a334a8a0e They're supposed to be really valuable 11 hónapja
3 módosított fájl, 11 hozzáadás és 4 törlés
  1. 1 1
      mods/default/nodes.lua
  2. 9 2
      mods/starpearl/init.lua
  3. 1 1
      mods/stoneworld/nodes.lua

+ 1 - 1
mods/default/nodes.lua

@@ -1245,7 +1245,7 @@ minetest.register_node("default:stone_with_mese", {
 	drop = {
 		max_items = 2,
 		items = {
-			{items = {'mobs:flame_bolt'}, rarity = 16},
+			{items = {'mobs:flame_bolt'}, rarity = 32},
 			{items = {'default:mese_crystal'}}
 		}
 	},

+ 9 - 2
mods/starpearl/init.lua

@@ -33,11 +33,18 @@ end
 
 
 if not starpearl.run_once then
+	minetest.register_craftitem("mobs:flame_bolt", {
+		description = "Flame Bolt",
+		 inventory_image = "mobs_flame_bolt.png",
+		  groups = {flammable = 3},
+		   light_source = 14,
+
+		     on_place = function(...) return starpearl.on_place(...) end,
+	})
+
 	minetest.register_craftitem("starpearl:pearl", {
 		description = "Star Pearl",
 		inventory_image = "starpearl_pearl.png",
-
-		on_place = function(...) return starpearl.on_place(...) end,
 	})
 
   local c = "starpearl:core"

+ 1 - 1
mods/stoneworld/nodes.lua

@@ -54,7 +54,7 @@ minetest.register_node("stoneworld:basalt_with_mese", {
 	drop = {
 		max_items = 2,
 		items = {
-			{items = {'mobs:flame_bolt'}, rarity = 16},
+			{items = {'mobs:flame_bolt'}, rarity = 32},
 			{items = {'default:mese_crystal'}}
 		}
 	},