fix: update dst port when ship captured (#217)

This commit is contained in:
Ilan Schemoul
2025-03-13 06:31:41 -07:00
committed by GitHub
parent 8124651382
commit cb3f36a74f
3 changed files with 6 additions and 0 deletions
+4
View File
@@ -180,4 +180,8 @@ export class UnitImpl implements Unit {
dstPort(): Unit {
return this._dstPort;
}
setDstPort(dstPort: Unit): void {
this._dstPort = dstPort;
}
}