diff options
author | ShadowNinja <shadowninja@minetest.net> | 2013-12-29 10:59:04 -0500 |
---|---|---|
committer | ShadowNinja <shadowninja@minetest.net> | 2013-12-29 10:59:04 -0500 |
commit | 93b0d25cbc6d4347f731b0b6c9f4f06ffdfbd18c (patch) | |
tree | ddce4633fb8079789a6fe896f1a0675daadcc0f9 | |
parent | 8e2cb0121b4c86d85e2da82d89b44e9cb3b70dd3 (diff) |
Use get_string for owner string
-rw-r--r-- | technic/machines/HV/quarry.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/technic/machines/HV/quarry.lua b/technic/machines/HV/quarry.lua index 09565f0..4d6d932 100644 --- a/technic/machines/HV/quarry.lua +++ b/technic/machines/HV/quarry.lua @@ -79,7 +79,7 @@ local function quarry_dig(pos, center, size) local meta = minetest.get_meta(pos) local drops = {} local dig_y = meta:get_int("dig_y") - local owner = meta:get_int("owner") + local owner = meta:get_string("owner") local vm = VoxelManip() local p1 = vector.new( |