Predator weapon bug

Ive got a bug where all my second weapons on preadotor don’t work, when selecting them it just shows a second plasma caster but then it detached from shoulder and can’t be used!

1 Like

I also have no secondary. On PC. It’s rather annoying lol. Actually it’s driving me crazy

1 Like

delete the save files.
It will not cost you game progress (aka what you have unlocked), as that is all stored online. But you will need to remake all your load outs.

there’s several skin combinations that can cause this.

1 Like

Deleting the saveGames works. Sucks you have to reset your stuff, but oh well.

Click on your windows key on the keyboard > type PowerShell > when the terminal opens > copy paste whats below. This will remove the folder and everything inside it. Otherwise just navigate there and remove it.

$PathToCheck = "$ENV:USERPROFILE\AppData\Local\SpaceFish\Saved\SaveGames"
if (Test-Path $PathToCheck)  {
    Remove-Item -Recurse -Force $PathToCheck
    if (!(Test-Path $PathToCheck) {
        Write-Host "saveGames folder removed!"
    } else {
        Write-Host "Sucks, I don't work for free lol."
    }

} else {
    Write-Host "The folder is located elsewhere"
}

Would that be safe to do on ps4 or would I lose unlocks?

This thread shows how to do it for PS4. You don’t lose anything but your saved fits. Just have to redo them.

1 Like

Thank you it worked :)