aboutsummaryrefslogtreecommitdiff
path: root/gamemode/npcsystem/sh_shop.lua
blob: 31423b69a42c08ba8836baf76f0c2992d56bd362 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
print("No longer Hello from sh_shop.lua!")

local reg = nrequire("sh_npcsystem.lua")

local base = nrequire("sh_talkablenpc.lua")
local npc = {}

local npc_m = {__index = function(self,key)
	return base[key]
end}

setmetatable(npc,npc_m)

npc.Name = "Shopkeep"

reg.RegisterNPC(npc)

return npc