File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ All notable changes to TTT2 will be documented here. Inspired by [keep a changel
2121- Fixed missing ` limit_left ` translation (by @mexikoedi )
2222- Fixed ` GetHeadshotMultiplier ` nil value error (by @mexikoedi )
2323- Fixed continuous use not working correctly with entities like health stations (by @saibotk )
24+ - Fixed vFire explosions still killing players with ` NoExplosionDamage ` equipped (by @TW1STaL1CKY )
25+ - Fixed vFire explosions sometimes not damaging entities in the way they should, like explosive barrels (by @TW1STaL1CKY )
2426
2527### Removed / Breaking Changes
2628
Original file line number Diff line number Diff line change @@ -234,7 +234,7 @@ if SERVER then
234234 return
235235 end
236236
237- if not IsValid ( ent ) or not ent : IsPlayer ( ) or not dmg : IsExplosionDamage () then
237+ if not dmg : IsExplosionDamage ( ) or not IsValid ( ent ) or ent : IsPlayer () then
238238 return
239239 end
240240
You can’t perform that action at this time.
0 commit comments