diff --git a/data/occupations/default_priest.lua b/data/occupations/default_priest.lua index a479a79..57f9ff9 100644 --- a/data/occupations/default_priest.lua +++ b/data/occupations/default_priest.lua @@ -100,6 +100,7 @@ local priest_def = { [30] = "Love is a tool for capturing the souls of men. Pretend to love, and he will accept you. \nLove is reverence, and worship, and glory, and the upward glance. Not a bandage for dirty sores. \nBut he doesn’t know it. Those who speak of love most promiscuously are the ones who’ve never felt it. \nThey make some sort of feeble stew out of sympathy, compassion, contempt and general indifference, and they call it love. \nOnce you’ve felt what it means to love, the total passion for the total height—you’re incapable of anything less.", [31] = "If you learn how to rule one single man’s soul, you can get the rest of mankind. \nIt’s the soul, not whips or swords or fire or guns. \nThat’s why the Caesars, the Attilas, the Napoleons were fools and did not last. \nThe soul, is that which can’t be ruled. It must be broken. \nDrive a wedge in, get your fingers on it—and the man is yours.", [32] = "Great and wise men can’t be ruled." + } npc.chat(self.npc_name, player:get_player_name(), teachings[math.random(1, #teachings)] ..". \nThese are the teachings of our Creator.") @@ -211,4 +212,4 @@ local priest_def = { } -- Register occupation -npc.occupations.register_occupation("priest", priest_def) +npc.occupations.register_occupation("basic_priest", priest_def) diff --git a/init.lua b/init.lua index e0fb1e4..0fb0aac 100755 --- a/init.lua +++ b/init.lua @@ -43,6 +43,5 @@ dofile(path .. "/data/names_data.lua") dofile(path .. "/data/occupations/default.lua") dofile(path .. "/data/occupations/default_farmer.lua") dofile(path .. "/data/occupations/default_priest.lua") -dofile(path .. "/data/occupations/default_miner.lua") print (S("[Mod] Advanced NPC loaded"))