Skip to content

Commit

Permalink
Add modifier property default values for Stacking and LifeStepMoment.
Browse files Browse the repository at this point in the history
  • Loading branch information
Damnae committed Sep 1, 2023
1 parent 29fca7b commit 4778e77
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/views/abilities/Modifier.vue
Original file line number Diff line number Diff line change
Expand Up @@ -129,17 +129,17 @@
<td>Max Layer</td>
<td><em>{{ modifier.MaxLayer }}</em></td>
</tr>
<tr v-if="modifier.Stacking">
<tr>
<td>Stacking</td>
<td><em>{{ modifier.Stacking }}</em></td>
<td><em>{{ modifier.Stacking ?? 'Unique' }}</em></td>
</tr>
<tr v-if="modifier.LifeTime">
<td>Life Time</td>
<td><em>{{ modifier.LifeTime }}</em></td>
</tr>
<tr v-if="modifier.LifeStepMoment">
<tr>
<td>Life Step Moment</td>
<td><em>{{ modifier.LifeStepMoment }}</em></td>
<td><em>{{ modifier.LifeStepMoment ?? 'ModifierPhase2End' }}</em></td>
</tr>
<tr>
<td>Use Snapshot Entity</td>
Expand Down

0 comments on commit 4778e77

Please sign in to comment.