summaryrefslogtreecommitdiff
path: root/potato.lua
diff options
context:
space:
mode:
authorAuke Kok <auke-jan.h.kok@intel.com>2015-05-07 23:40:14 -0700
committerAuke Kok <auke-jan.h.kok@intel.com>2015-05-07 23:40:14 -0700
commit7ba94da27aedf69bb8301455af10f73d992a3f47 (patch)
treefffbc04b5c8535eafaec2c243453e73536572130 /potato.lua
parentbcf27ebd99a3826982fd40da2981f7f459ee5205 (diff)
Abstract crops.register method a bit.
Diffstat (limited to 'potato.lua')
-rw-r--r--potato.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/potato.lua b/potato.lua
index cb2108e..248957b 100644
--- a/potato.lua
+++ b/potato.lua
@@ -182,7 +182,7 @@ local properties = {
wither_damage = 10,
}
-table.insert(crops.plants, { name = "crops:potato_plant_1", properties = properties })
-table.insert(crops.plants, { name = "crops:potato_plant_2", properties = properties })
-table.insert(crops.plants, { name = "crops:potato_plant_3", properties = properties })
-table.insert(crops.plants, { name = "crops:potato_plant_4", properties = properties })
+crops.register({ name = "crops:potato_plant_1", properties = properties })
+crops.register({ name = "crops:potato_plant_2", properties = properties })
+crops.register({ name = "crops:potato_plant_3", properties = properties })
+crops.register({ name = "crops:potato_plant_4", properties = properties })