aboutsummaryrefslogtreecommitdiff
path: root/src/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'src/scripts')
-rw-r--r--src/scripts/world/go_scripts.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/scripts/world/go_scripts.cpp b/src/scripts/world/go_scripts.cpp
index e14311f9d31..6f06ac78fd7 100644
--- a/src/scripts/world/go_scripts.cpp
+++ b/src/scripts/world/go_scripts.cpp
@@ -982,6 +982,12 @@ bool GOHello_go_hive_pod(Player *pPlayer, GameObject *pGO)
return true;
}
+bool GOHello_go_massive_seaforium_charge(Player* pPlayer, GameObject *pGo)
+{
+ pGo->SetLootState(GO_JUST_DEACTIVATED);
+ return true;
+}
+
void AddSC_go_scripts()
{
Script *newscript;
@@ -1168,4 +1174,9 @@ void AddSC_go_scripts()
newscript->Name = "go_hive_pod";
newscript->pGOHello = &GOHello_go_hive_pod;
newscript->RegisterSelf();
+
+ newscript = new Script;
+ newscript->Name = "go_massive_seaforium_charge";
+ newscript->pGOHello = &GOHello_go_massive_seaforium_charge;
+ newscript->RegisterSelf();
}