diff options
author | Calinou <calinou9999spam@gmail.com> | 2014-01-20 10:15:17 -0800 |
---|---|---|
committer | Calinou <calinou9999spam@gmail.com> | 2014-01-20 10:15:17 -0800 |
commit | 2b01bd5cbccfd3a74076602d70ba74d792641779 (patch) | |
tree | efbdc322a94c1037c0d1da0486f4276878a7bcaa | |
parent | cce1f423ca222e5d971c7b0190d5d55087ed3171 (diff) | |
parent | 6c4af19353421e84416ad731ea4e45841a82e363 (diff) | |
download | moreblocks-2b01bd5cbccfd3a74076602d70ba74d792641779.tar.gz moreblocks-2b01bd5cbccfd3a74076602d70ba74d792641779.tar.bz2 moreblocks-2b01bd5cbccfd3a74076602d70ba74d792641779.zip |
Merge pull request #10 from Jat15/patch-1
Fix circular saw bug: typo fix.
-rw-r--r-- | circular_saw.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/circular_saw.lua b/circular_saw.lua index c3da999..9747cda 100644 --- a/circular_saw.lua +++ b/circular_saw.lua @@ -254,7 +254,7 @@ circular_saw.on_metadata_inventory_take = function(pos, listname, index, stack, circular_saw.update_inventory(pos, -1 * cost); - elseif(listname=="mikro") then + elseif(listname=="micro") then -- Each microblock costs 1 microblock circular_saw.update_inventory(pos, -1 * 1 * stack:get_count()); |