forked from your-land-mirror/yl_speak_up
15 lines
541 B
Lua
15 lines
541 B
Lua
-- YourLand specific file.
|
|
-- Please link local_server_do_once_on_startup.lua to this file IF running on the YourLand server!
|
|
-- Else ignore this file.
|
|
|
|
|
|
-- mobs registered as yl_speak_up-mobs (based on mobs_redo)
|
|
if(true) then
|
|
-- react to right-click etc.
|
|
dofile(yl_speak_up.modpath .. "interface_mobs_api.lua")
|
|
-- the actual mobs, using mobs_redo
|
|
dofile(yl_speak_up.modpath .. "mobs.lua")
|
|
-- may store a table of registered mobs in the future; currently not really used
|
|
yl_speak_up.mob_table = yl_speak_up.init_mob_table() or {}
|
|
end
|