diff options
author | Tartalo <none@none> | 2010-04-11 20:07:15 +0200 |
---|---|---|
committer | Tartalo <none@none> | 2010-04-11 20:07:15 +0200 |
commit | 093b8160b3cdcb1790c048d8a7cb12353bad76d5 (patch) | |
tree | b8b45a7764b60abe6aab00567c5cec41f650b4d3 /src | |
parent | 626240ef91e3c10b6e06a2a0455e6b746732cd2c (diff) |
Icecrown: Fix quest 14062 & 14142 support
'You've Really Done It This Time, Kul', both sides
Remember that this quest has not proper db support yet (missing spawn & loot).
Update Copyright note of go_scripts.cpp
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/scripts/world/go_scripts.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/scripts/world/go_scripts.cpp b/src/scripts/world/go_scripts.cpp index d068f538fa2..7ea23b11feb 100644 --- a/src/scripts/world/go_scripts.cpp +++ b/src/scripts/world/go_scripts.cpp @@ -1,4 +1,5 @@ -/* Copyright (C) 2006 - 2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/>.sourceforge.net/> +/* Copyright (C) 2006 - 2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/>> +* Copyright (C) 2006 - 20010 TrinityCore <http://www.trinitycore.org/> * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or @@ -1046,6 +1047,11 @@ void AddSC_go_scripts() newscript->RegisterSelf(); newscript = new Script; + newscript->Name = "go_black_cage"; + newscript->pGOHello = &GOHello_go_black_cage; + newscript->RegisterSelf(); + + newscript = new Script; newscript->Name = "go_amberpine_outhouse"; newscript->pGOHello = &GOHello_go_amberpine_outhouse; newscript->pGOSelect = &GOSelect_go_amberpine_outhouse; |