summaryrefslogtreecommitdiff
path: root/src/main/ActiveThorns.c
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-05-20 14:21:51 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-05-20 14:21:51 +0000
commit2e56de0aaa761f45dc3fb81fae41566c85c03db1 (patch)
treee9ffca0cacf529f8231a1cd1e394065ed27d80c7 /src/main/ActiveThorns.c
parent7368cca79049430d99e9b9cfb30e814a15462ebd (diff)
Makes new call to activate thorn parameters after thorns are activated.
Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@2831 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/ActiveThorns.c')
-rw-r--r--src/main/ActiveThorns.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main/ActiveThorns.c b/src/main/ActiveThorns.c
index 91d21346..6b45850b 100644
--- a/src/main/ActiveThorns.c
+++ b/src/main/ActiveThorns.c
@@ -1324,6 +1324,14 @@ int CCTKi_ActivateThorns(const char *activethornlist)
ActivateThorn(thorn);
}
+ /* Now do any necessary parameter activation */
+ for(thorn = Util_StringListNext(required_thorns, 1);
+ thorn;
+ thorn = Util_StringListNext(required_thorns, 0))
+ {
+ CCTKi_ParameterActivateThornParameters(thorn);
+ }
+
retval = 0;
}
else