diff --git a/docs/rh-log.txt b/docs/rh-log.txt index cef2558a7f..fbf31009e4 100644 --- a/docs/rh-log.txt +++ b/docs/rh-log.txt @@ -1,4 +1,11 @@ -August 8, 2009 +August 9, 2009 (Changes by Graf Zahl) +- Fixed: A_EntityAttack did not spawn the correct missiles. + +August 8, 2009 (Changes by Graf Zahl) +- replaced all code that changed a sector's light level with a setter function. +- Fixed: The FeatureFlags array in the CPUInfo struct was not mapped to the flags properly. + +August 8, 2009 - Changed the return value of SetActivatorToTarget to match the description in the wiki. diff --git a/src/g_strife/a_entityboss.cpp b/src/g_strife/a_entityboss.cpp index 51501c503a..f69d43fc6f 100644 --- a/src/g_strife/a_entityboss.cpp +++ b/src/g_strife/a_entityboss.cpp @@ -25,7 +25,7 @@ void A_SpectralMissile (AActor *self, const char *missilename) if (self->target != NULL) { AActor *missile = P_SpawnMissileXYZ (self->x, self->y, self->z + 32*FRACUNIT, - self, self->target, PClass::FindClass("SpectralLightningBigV2"), false); + self, self->target, PClass::FindClass(missilename), false); if (missile != NULL) { missile->tracer = self->target;