Skip to content

Commit 44787db

Browse files
committed
Prevent stingy recoveries on story ships.
1 parent d6b7bb6 commit 44787db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/starpocalypse/salvage/DerelictModifyingScript.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ private void forceStoryPointRecovery(SectorEntityToken entity) {
7272
log.info("Found new salvageable: " +entity.getFullName()+ " in " + entity.getContainingLocation().getName());
7373
for(ShipRecoverySpecial.PerShipData ship:((ShipRecoverySpecial.ShipRecoverySpecialData) specialData).ships)
7474
{
75-
if(ship.getVariant() == null || memory.contains("$hamatsu")) //Yes null variant this can occur.
75+
if(ship.getVariant() == null || memory.contains("$hamatsu") || memory.contains("$onslaughtMkI") || memory.contains("$ziggurat")) //Yes null variant this can occur.
7676
{
7777
continue;
7878
}

0 commit comments

Comments
 (0)