hatred fix
This commit is contained in:
@@ -148,12 +148,8 @@ function GamePanel(props) {
|
||||
);
|
||||
}
|
||||
|
||||
function resolutionEl(r) {
|
||||
return <div>{JSON.stringify(resolution)}</div>;
|
||||
}
|
||||
|
||||
const selectedSkills = resolution
|
||||
? resolutionEl(resolution)
|
||||
? <div> </div>
|
||||
: playerTeam.cryps.map((c, i) => stackElement(c, i));
|
||||
|
||||
// const mobileSkills = activeCryp
|
||||
|
||||
@@ -188,7 +188,10 @@ function getCombatText(cryp, resolution) {
|
||||
|
||||
if (type === 'Damage') {
|
||||
const { skill, amount, mitigation, colour } = event;
|
||||
return amount;
|
||||
const mitigationText = mitigation
|
||||
? `(${mitigation})`
|
||||
: '';
|
||||
return `${amount} ${mitigationText}`;
|
||||
}
|
||||
|
||||
if (type === 'Healing') {
|
||||
|
||||
Reference in New Issue
Block a user