nodecore-skyblock/nc_sky_inject/init.lua

12 lines
311 B
Lua
Raw Normal View History

2019-10-23 03:57:37 +02:00
-- LUALOCALS < ---------------------------------------------------------
2019-12-05 06:01:18 +01:00
local nodecore
= nodecore
2019-10-23 03:57:37 +02:00
-- LUALOCALS > ---------------------------------------------------------
print("injecting stuff...")
2019-12-05 06:01:18 +01:00
local ntgr = nodecore.tree_growth_rate
2019-10-23 03:57:37 +02:00
2019-12-05 06:01:18 +01:00
function nodecore.tree_growth_rate(pos)
return ntgr(pos)*10
end