Skip to content

Commit 9d59dcb

Browse files
committedDec 10, 2024
tile flying speed and sticky bomb fix
1 parent d539197 commit 9d59dcb

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed
 

‎Base/Entities/Items/Explosives/Explosion.as

+2-2
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ void Explode(CBlob@ this, f32 radius, f32 damage)
375375

376376
if (collapse_checker !is null)
377377
{
378-
collapse_checker.set_f32("expl_radius", radius);
378+
collapse_checker.set_f32("expl_radius", this.get_f32("map_damage_radius"));
379379
if (killer !is null)
380380
{
381381
collapse_checker.SetDamageOwnerPlayer(killer);
@@ -417,7 +417,7 @@ void Explode(CBlob@ this, f32 radius, f32 damage)
417417

418418
f32 angle_factor_account = exp_dot >= 0.87 ? 180 : 0;
419419

420-
tileblob.setVelocity(Vec2f(-radius/3.5, 0).RotateBy(-(pos-tpos).getAngle()+angle_factor_account));
420+
tileblob.setVelocity(Vec2f(-(this.get_f32("map_damage_radius"))/3.5, 0).RotateBy(-(pos-tpos).getAngle()+angle_factor_account));
421421
tileblob.set_s32("tile_frame", type_to_spawn);
422422
}
423423
break;

‎Base/Entities/Items/Explosives/StickyBomb/StickyBomb.as

+7-4
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ bool doesCollideWithBlob(CBlob@ this, CBlob@ blob)
9191
return blob.getTeamNum() != this.getTeamNum() && blob.hasTag("shielded") && blockAttack(blob, blob.getPosition() - this.getPosition(), 0.0f);
9292
}
9393

94-
string name = blob.getName();
94+
string name = blob.getConfig();
9595

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")
9797
{
9898
return false;
9999
}
@@ -121,14 +121,16 @@ void onTick(CBlob@ this)
121121
void RememberVelAng(CBlob@ this)
122122
{
123123
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;
126126

127127
this.set_f32("velang", velang);
128128
}
129129

130130
void onCollision( CBlob@ this, CBlob@ blob, bool solid, Vec2f normal, Vec2f point1, Vec2f point2 )
131131
{
132+
if (blob !is null && blob.getConfig() == this.getConfig()) return;
133+
132134
if (solid)
133135
{
134136
RememberVelAng(this);
@@ -141,6 +143,7 @@ void onCollision( CBlob@ this, CBlob@ blob, bool solid, Vec2f normal, Vec2f poin
141143
this.setAngleDegrees(velang+90);
142144
this.setPosition(Vec2f(Maths::Round(point2.x/8)*8, Maths::Round(point2.y/8)*8));
143145
this.getShape().SetStatic(true);
146+
//this.getShape().getConsts().collidable = false;
144147

145148
int new_z = this.isInWater()?100:300;
146149

‎Base/Entities/Special/TileEntity/TileEntity.as

+4-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,10 @@ void onCollision( CBlob@ this, CBlob@ blob, bool solid, Vec2f normal, Vec2f poin
114114

115115
if (solid)
116116
{
117-
f32 max_hits = this.getOldVelocity().Length();
117+
f32 max_hits = this.getOldVelocity().Length()*2;
118+
bool wooden = getMap().isTileWood(this.get_s32("tile_frame"));
119+
if (wooden) max_hits /= 2;
120+
118121
//
119122
{
120123
HitInfo@[] hitInfos;

0 commit comments

Comments
 (0)
Please sign in to comment.