diff options
author | Zaraki98 <superlagron@hotmail.fr> | 2013-07-31 18:38:12 +0200 |
---|---|---|
committer | Zaraki98 <superlagron@hotmail.fr> | 2013-07-31 18:38:12 +0200 |
commit | f365b5888834db4f8b719d57c8ce04b6d03db971 (patch) | |
tree | 0fab38d4283b3a288f5db4d5438825dd833e2e23 | |
parent | d32329991634a56747b27d20add3b6077ebb1b6a (diff) |
Replace 2 buckets
Only one bucket was replaced, so we need to repeat the action for the second bucket.
-rw-r--r-- | food/soup.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/food/soup.lua b/food/soup.lua index 748e8e3..017e176 100644 --- a/food/soup.lua +++ b/food/soup.lua @@ -37,7 +37,7 @@ minetest.register_craft({ {"bucket:bucket_water", "food:tomato", "bucket:bucket_water"},
{"", "food:bowl", ""},
},
- replacements = {{"bucket:bucket_water", "bucket:bucket_empty"}}
+ replacements = {{"bucket:bucket_water", "bucket:bucket_empty"},{"bucket:bucket_water", "bucket:bucket_empty"}}
})
@@ -68,5 +68,5 @@ minetest.register_craft({ {"bucket:bucket_water", "food:meat", "bucket:bucket_water"},
{"", "food:bowl", ""},
},
- replacements = {{"bucket:bucket_water", "bucket:bucket_empty"}}
+ replacements = {{"bucket:bucket_water", "bucket:bucket_empty"},{"bucket:bucket_water", "bucket:bucket_empty"}}
})
|