changed boons to bool since all boons go to 5 people
This commit is contained in:
parent
2a26e7f8b5
commit
c14e676029
4 changed files with 44 additions and 52 deletions
|
@ -70,10 +70,10 @@
|
|||
<td>@build.BuildName</td>
|
||||
<td>@build.Class.ToString()</td>
|
||||
<td>@build.EliteSpecialization.ToString()</td>
|
||||
<td><input type="checkbox" checked="@(build.Might > 0)" disabled="true" /></td>
|
||||
<td><input type="checkbox" checked="@(build.Heal > 0)" disabled="true" /></td>
|
||||
<td><input type="checkbox" checked="@(build.Quickness > 0)" disabled="true" /></td>
|
||||
<td><input type="checkbox" checked="@(build.Alacrity > 0)" disabled="true" /></td>
|
||||
<td><input type="checkbox" checked="@(build.Might)" disabled="true" /></td>
|
||||
<td><input type="checkbox" checked="@(build.Heal)" disabled="true" /></td>
|
||||
<td><input type="checkbox" checked="@(build.Quickness)" disabled="true" /></td>
|
||||
<td><input type="checkbox" checked="@(build.Alacrity)" disabled="true" /></td>
|
||||
</tr>
|
||||
}
|
||||
</table>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue