technic_cnc/cnc.lua: Fix access to non-existant stack parameter (#528)

Este commit está contenido en:
thetaepsilon-gamedev 2020-01-28 20:38:13 +00:00 cometido por SmallJoker
padre 904800abde
commit fbc4cc8511
Se han modificado 1 ficheros con 1 adiciones y 1 borrados

Ver fichero

@ -59,7 +59,7 @@ else
if minetest.is_protected(pos, player:get_player_name()) then
return 0
end
return stack:get_count()
return count
end
can_dig = function(pos, player)