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

This commit is contained in:
thetaepsilon-gamedev 2020-01-28 20:38:13 +00:00 committed by SmallJoker
부모 904800abde
커밋 fbc4cc8511
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제

파일 보기

@ -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)