|
@@ -66,7 +66,7 @@ discard block |
|
|
block discarded – undo |
|
66
|
66
|
return; |
|
67
|
67
|
} |
|
68
|
68
|
|
|
69
|
|
- $playerAscension = $this->talentCollection->findSecretKnowledge()?->getAscension() |
|
|
69
|
+ $playerAscension = $this->talentCollection->findSecretKnowledge() ? ->getAscension() |
|
70
|
70
|
?? throw PlayerException::etherumOverdose(); |
|
71
|
71
|
|
|
72
|
72
|
$corruptionBoundary = $this->calculateCorruptionBoundary(); |
|
@@ -92,7 +92,7 @@ discard block |
|
|
block discarded – undo |
|
92
|
92
|
|
|
93
|
93
|
private function calculateCorruptionBoundary(): Etherum |
|
94
|
94
|
{ |
|
95
|
|
- $ascension = $this->talentCollection->findSecretKnowledge()?->getAscension(); |
|
|
95
|
+ $ascension = $this->talentCollection->findSecretKnowledge() ? ->getAscension(); |
|
96
|
96
|
if ($ascension === null) { |
|
97
|
97
|
return new Etherum(2); |
|
98
|
98
|
} |
Please login to merge, or discard this patch.