update15 #34

Merged
dkanus merged 7 commits from update15 into master 2024-11-25 22:10:57 +03:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit 501662a7d7 - Show all commits

View File

@ -710,7 +710,7 @@ function Stick(Actor target, Vector hitLocation) {
expData.affectedByScream = charAffectedByScream; expData.affectedByScream = charAffectedByScream;
if (!target.IsA('NiceMonster')) { if (!target.IsA('NiceMonster')) {
hitLocation -= target.location; hitLocation = (hitLocation - target.location) << target.rotation;
boneStick = 'None'; boneStick = 'None';
resultTarget = target; resultTarget = target;
} else { } else {

View File

@ -259,6 +259,7 @@ static function SpawnStuckProjectile(
} else { } else {
spawnedBullet.SetBase(base); spawnedBullet.SetBase(base);
spawnedBullet.SetRelativeLocation(shift); spawnedBullet.SetRelativeLocation(shift);
spawnedBullet.SetRelativeRotation(direction - base.rotation);
} }
} }