diff options
-rw-r--r-- | app/views/characters/show.html.erb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/characters/show.html.erb b/app/views/characters/show.html.erb index 382cdc7..ce1c2db 100644 --- a/app/views/characters/show.html.erb +++ b/app/views/characters/show.html.erb @@ -42,19 +42,19 @@ </tr> <tr> <th class="table-cell-padded text-right">Accuracy</th> - <td class="table-cell-padded"><%= @character.accuracy %></td> + <td class="table-cell-padded"><%= @character.accuracy(with_combat_style: true) %></td> </tr> <tr> <th class="table-cell-padded text-right">Power</th> - <td class="table-cell-padded"><%= @character.power %></td> + <td class="table-cell-padded"><%= @character.power(with_combat_style: true) %></td> </tr> <tr> <th class="table-cell-padded text-right">Evasion</th> - <td class="table-cell-padded"><%= @character.evasion %></td> + <td class="table-cell-padded"><%= @character.evasion(with_combat_style: true) %></td> </tr> <tr> <th class="table-cell-padded text-right">Block</th> - <td class="table-cell-padded"><%= @character.block %></td> + <td class="table-cell-padded"><%= @character.block(with_combat_style: true) %></td> </tr> <tr> <th class="table-cell-padded text-right">Block Value</th> |