Skip to content

Commit c5f3ff2

Browse files
committed
Fixed caber explosions not counting as melee kills
1 parent 307c1cc commit c5f3ff2

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

game/quiver/info_changelog.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ Quiver Private Alpha 1.1.0 (WIP):
6464
- The Charge Shield's jumping has been removed.
6565
- Increased the bunnyhop speed cap from 1.5x move speed to 2x move speed.
6666
- Fixed some rare crashes related to projected textures.
67+
- Fixed caber explosions not counting as melee kills.
6768
- Added the following Source SDK Pull Requests:
6869
- #1437: MvM: Fix Explosive Headshot working on invulnerable target
6970
- #1440: Treat being in background map as not in-game

game/quiver/info_highlights.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ Unlockable weapon balance changes:
8181
- The Warrior's Spirit's 50 health on kill attribute was changed to an attribute awarding up to 10 health on hit.
8282
- The Warrior's Spirit now lowers the Heavy's max health by 20.
8383
- Lowered the Warrior's Spirit's damage bonus from 30 to 25.
84+
- Fixed Ullapool Caber explosions not counting as melee kills.
85+
- Fixed Ullapool Caber not using mini-crits when charging.
8486

8587
MvM Changes:
8688
- Added armor-related upgrades to MvM (max armor, pierces damage resistances, and armor resistance).

src/game/shared/tf/tf_weapon_bottle.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,10 +287,9 @@ void CTFStickBomb::Detonate(bool bTaunting)
287287

288288
TE_TFExplosion(filter, 0.0f, explosion, Vector(0, 0, 1), TF_WEAPON_GRENADELAUNCHER, pTFPlayer->entindex(), -1, SPECIAL1, iCustomParticleIndex);
289289

290-
int dmgType = DMG_BLAST | DMG_USEDISTANCEMOD;
290+
int dmgType = DMG_BLAST | DMG_USEDISTANCEMOD | DMG_MELEE;
291291
if (IsCurrentAttackACrit())
292292
dmgType |= DMG_CRITICAL;
293-
294293
else if (m_bMiniCrit)
295294
dmgType |= DMG_RADIUS_MAX;
296295

0 commit comments

Comments
 (0)