diff --git a/sources/Weapons/NiceBullet.uc b/sources/Weapons/NiceBullet.uc index 8e03861..216ee99 100644 --- a/sources/Weapons/NiceBullet.uc +++ b/sources/Weapons/NiceBullet.uc @@ -710,7 +710,7 @@ function Stick(Actor target, Vector hitLocation) { expData.affectedByScream = charAffectedByScream; if (!target.IsA('NiceMonster')) { - hitLocation -= target.location; + hitLocation = (hitLocation - target.location) << target.rotation; boneStick = 'None'; resultTarget = target; } else { diff --git a/sources/Weapons/NiceProjectileSpawner.uc b/sources/Weapons/NiceProjectileSpawner.uc index 5334af4..a8ee953 100644 --- a/sources/Weapons/NiceProjectileSpawner.uc +++ b/sources/Weapons/NiceProjectileSpawner.uc @@ -259,6 +259,7 @@ static function SpawnStuckProjectile( } else { spawnedBullet.SetBase(base); spawnedBullet.SetRelativeLocation(shift); + spawnedBullet.SetRelativeRotation(direction - base.rotation); } }