diff options
author | Auke Kok <auke-jan.h.kok@intel.com> | 2015-05-07 23:40:14 -0700 |
---|---|---|
committer | Auke Kok <auke-jan.h.kok@intel.com> | 2015-05-07 23:40:14 -0700 |
commit | 7ba94da27aedf69bb8301455af10f73d992a3f47 (patch) | |
tree | fffbc04b5c8535eafaec2c243453e73536572130 /potato.lua | |
parent | bcf27ebd99a3826982fd40da2981f7f459ee5205 (diff) |
Abstract crops.register method a bit.
Diffstat (limited to 'potato.lua')
-rw-r--r-- | potato.lua | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 }) |