@@ -91,9 +91,9 @@ bool doesCollideWithBlob(CBlob@ this, CBlob@ blob)
91
91
return blob.getTeamNum() ! = this .getTeamNum() && blob.hasTag(" shielded" ) && blockAttack(blob, blob.getPosition() - this .getPosition(), 0.0f );
92
92
}
93
93
94
- string name = blob.getName ();
94
+ string name = blob.getConfig ();
95
95
96
- if (name == " fishy" || name == " food" || name == " steak" || name == " grain" || name == " heart" || name == " saw" )
96
+ if (name == this .getConfig() || name == " fishy" || name == " food" || name == " steak" || name == " grain" || name == " heart" || name == " saw" )
97
97
{
98
98
return false ;
99
99
}
@@ -121,14 +121,16 @@ void onTick(CBlob@ this)
121
121
void RememberVelAng(CBlob @ this )
122
122
{
123
123
f32 velang = - this .getOldVelocity().Angle();
124
- f32 modulo = velang% 45 ;
125
- velang = Maths :: Floor(velang/ 45 )* 45 ;
124
+ // f32 modulo = velang%45;
125
+ velang = Maths :: Floor(( velang+ 45 / 2 ) / 45 )* 45 ;
126
126
127
127
this .set_f32(" velang" , velang);
128
128
}
129
129
130
130
void onCollision( CBlob @ this , CBlob @ blob , bool solid, Vec2f normal, Vec2f point1, Vec2f point2 )
131
131
{
132
+ if (blob ! is null && blob.getConfig() == this .getConfig()) return ;
133
+
132
134
if (solid)
133
135
{
134
136
RememberVelAng(this );
@@ -141,6 +143,7 @@ void onCollision( CBlob@ this, CBlob@ blob, bool solid, Vec2f normal, Vec2f poin
141
143
this .setAngleDegrees(velang+ 90 );
142
144
this .setPosition(Vec2f(Maths :: Round(point2.x / 8 )* 8 , Maths :: Round(point2.y / 8 )* 8 ));
143
145
this .getShape().SetStatic(true );
146
+ // this.getShape().getConsts().collidable = false;
144
147
145
148
int new_z = this .isInWater()? 100 : 300 ;
146
149
0 commit comments