Remove admin shield from creative inventory

This commit is contained in:
stujones11 2016-05-27 19:51:04 +01:00
parent 3cf6887abd
commit ac414d3df3
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ local use_moreores = minetest.get_modpath("moreores")
minetest.register_tool("shields:shield_admin", {
description = "Admin Shield",
inventory_image = "shields_inv_shield_admin.png",
groups = {armor_shield=1000, armor_heal=100, armor_use=0},
groups = {armor_shield=1000, armor_heal=100, armor_use=0, not_in_creative_inventory=1},
wear = 0,
})