# HG changeset patch # User James D. Callahan III # Date 1350492706 18000 # Node ID 7354ae12d0f100ec1a38536a23f36d2def5026ad # Parent e249cca6dd1c57e5989dfe1eef72cf0da49c9e6d Tradeskill costs aren't modified by faction standing, so no need to un-modify them. diff -r e249cca6dd1c -r 7354ae12d0f1 Main.lua --- a/Main.lua Tue Oct 16 15:14:54 2012 -0500 +++ b/Main.lua Wed Oct 17 11:51:46 2012 -0500 @@ -32,7 +32,7 @@ ----------------------------------------------------------------------- -- Local constants. ----------------------------------------------------------------------- -local DB_VERSION = 11 +local DB_VERSION = 12 local DEBUGGING = false local EVENT_DEBUG = false @@ -1913,7 +1913,7 @@ class_professions[profession] = {} profession_skills = class_professions[profession] end - profession_skills[spell_id] = ("%d:%d:%d"):format(required_level, min_skill, ActualCopperCost(_G.GetTrainerServiceCost(index), trainer_standing)) + profession_skills[spell_id] = ("%d:%d:%d"):format(required_level, min_skill, _G.GetTrainerServiceCost(index)) end end end