Skip to content

Commit

Permalink
Fix class ID for throbbing box classes
Browse files Browse the repository at this point in the history
  • Loading branch information
smallmodel committed Oct 21, 2024
1 parent f87e6d5 commit 590b3f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/fgame/Entities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1980,7 +1980,7 @@ ThrobbingBox_ExplodeNebelwerfer::ThrobbingBox_ExplodeNebelwerfer()
---------------------------------------------------------------------------------------------
*/

CLASS_DECLARATION(ThrobbingBox_Explosive, ThrobbingBox_ExplodePlayerNebelwerfer, "ThrobbingBox_ExplodeNebelwerfer") {
CLASS_DECLARATION(ThrobbingBox_Explosive, ThrobbingBox_ExplodePlayerNebelwerfer, "ThrobbingBox_ExplodePlayerNebelwerfer") {
{NULL, NULL}
};

Expand Down Expand Up @@ -2009,7 +2009,7 @@ ThrobbingBox_ExplodePlayerNebelwerfer::ThrobbingBox_ExplodePlayerNebelwerfer()

Event EV_StickyBombWet("stickybombwet", EV_DEFAULT, NULL, NULL, NULL);

CLASS_DECLARATION(ThrobbingBox_Explosive, ThrobbingBox_Stickybomb, "ThrobbingBox_ExplodeNebelwerfer") {
CLASS_DECLARATION(ThrobbingBox_Explosive, ThrobbingBox_Stickybomb, "ThrobbingBox_Stickybomb") {
{&EV_Damage, &ThrobbingBox_Stickybomb::OnBlowUp },
{&EV_Use, &ThrobbingBox_Stickybomb::OnStickyBombUse},
{&EV_StickyBombWet, &ThrobbingBox_Stickybomb::OnStickyBombWet},
Expand Down

0 comments on commit 590b3f5

Please sign in to comment.