We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c9479d commit d479f68Copy full SHA for d479f68
1 file changed
src/badguy/stumpy.cpp
@@ -71,13 +71,15 @@ Stumpy::active_update(float dt_sec)
71
{
72
switch (mystate) {
73
case STATE_INVINCIBLE:
74
+ set_group(COLGROUP_MOVING_STATIC);
75
if (invincible_timer.check()) {
76
mystate = STATE_NORMAL;
77
WalkingBadguy::initialize();
78
}
79
BadGuy::active_update(dt_sec);
80
break;
81
case STATE_NORMAL:
82
+ set_group(COLGROUP_MOVING);
83
WalkingBadguy::active_update(dt_sec);
84
85
0 commit comments