aboutsummaryrefslogtreecommitdiff
path: root/gamemode/core/npc
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2017-11-18 02:37:05 -0500
committerAlexander Pickering <alexandermpickering@gmail.com>2017-11-18 02:37:05 -0500
commit8ed7aec95941c0752a0ae21d10594579c39677fb (patch)
treed160fb6d89ec10f863b9d2773d3a14c09978b4ff /gamemode/core/npc
parent0a490d7d811c682a8d0f5a74840583028f13822a (diff)
downloadartery-8ed7aec95941c0752a0ae21d10594579c39677fb.tar.gz
artery-8ed7aec95941c0752a0ae21d10594579c39677fb.tar.bz2
artery-8ed7aec95941c0752a0ae21d10594579c39677fb.zip
Updates to documentation
* Fixed typos in README * Added Server/Client/Shared kinds to documentation * Documentation now includes readme
Diffstat (limited to 'gamemode/core/npc')
-rw-r--r--gamemode/core/npc/sv_huntingspawner.lua2
-rw-r--r--gamemode/core/npc/sv_npcsystem.lua2
-rw-r--r--gamemode/core/npc/sv_shop.lua2
3 files changed, 3 insertions, 3 deletions
diff --git a/gamemode/core/npc/sv_huntingspawner.lua b/gamemode/core/npc/sv_huntingspawner.lua
index f86fb59..99ed754 100644
--- a/gamemode/core/npc/sv_huntingspawner.lua
+++ b/gamemode/core/npc/sv_huntingspawner.lua
@@ -1,6 +1,6 @@
---Lets huntable monsters drop loot.
-- Register what monsters drop what loot
---@module sv_huntingspawner.lua
+--@server sv_huntingspawner.lua
--[[
This file spawns the huntable npc's in their zones.
diff --git a/gamemode/core/npc/sv_npcsystem.lua b/gamemode/core/npc/sv_npcsystem.lua
index ac8ddc0..0916d28 100644
--- a/gamemode/core/npc/sv_npcsystem.lua
+++ b/gamemode/core/npc/sv_npcsystem.lua
@@ -1,6 +1,6 @@
---Various functions for npcs.
-- Helps you spawn monsters, townies, and shopkeepers
---@module sv_npcsystem.lua
+--@server sv_npcsystem.lua
local f = nrequire("concommands.lua")
local n = {}
diff --git a/gamemode/core/npc/sv_shop.lua b/gamemode/core/npc/sv_shop.lua
index ffebce8..fd98eb8 100644
--- a/gamemode/core/npc/sv_shop.lua
+++ b/gamemode/core/npc/sv_shop.lua
@@ -1,5 +1,5 @@
---Some more logic related to shop npc's
---@module sv_shop.lua
+--@server sv_shop.lua
local itm = nrequire("core/inventory/item.lua")