Skip to content

Commit

Permalink
Blades in the Dark: Fixed issue with certain input fields having the …
Browse files Browse the repository at this point in the history
…same value.
  • Loading branch information
smalone11 committed Mar 18, 2016
1 parent 9e8e5cc commit 81bb75b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions Blades-in-the-Dark/README.md
Expand Up @@ -10,6 +10,9 @@ Report any problems, suggestions or features by sending a private message on Rol

## Changelog

### 0.0.2
* Fixed bug with Friend/Rival and Harm boxes that would cause the starting boxes to have the same value.

### 0.0.1

* First release, has the complete blank character sheet.
Expand Down
14 changes: 7 additions & 7 deletions Blades-in-the-Dark/blades.html
Expand Up @@ -4,7 +4,7 @@ <h1>Blades in the Dark</h1>
</div>

<div class="sheet-row">
<div class="sheet-version">Version 0.0.1</div>
<div class="sheet-version">Version 0.0.2</div>
</div>

<hr>
Expand Down Expand Up @@ -131,15 +131,15 @@ <h3>HARM</h3>

<div class="sheet-row">
<div class="sheet-col"><label for="attr_harm2">2</label></div>
<div class="sheet-col"><input type="text" name="attr_harm2" class="sheet-harm-half"></div>
<div class="sheet-col"><input type="text" name="attr_harm2" class="sheet-harm-half"></div>
<div class="sheet-col"><input type="text" name="attr_harm2_1" class="sheet-harm-half"></div>
<div class="sheet-col"><input type="text" name="attr_harm2_2" class="sheet-harm-half"></div>
<div class="sheet-col"><h5>(-1D)</h5></div>
</div>

<div class="sheet-row">
<div class="sheet-col"><label for="attr_harm1">1</label></div>
<div class="sheet-col"><input type="text" name="attr_harm1" class="sheet-harm-half"></div>
<div class="sheet-col"><input type="text" name="attr_harm1" class="sheet-harm-half"></div>
<div class="sheet-col"><input type="text" name="attr_harm1_1" class="sheet-harm-half"></div>
<div class="sheet-col"><input type="text" name="attr_harm1_2" class="sheet-harm-half"></div>
<div class="sheet-col"><h5>(REDUCED EFFECT)</h5></div>
</div>

Expand Down Expand Up @@ -501,13 +501,13 @@ <h3>Shady Friends</h3>
<div class="sheet-row">
<input type="checkbox" name="attr_friend1" class="sheet-friend">
<input type="checkbox" name="attr_rival1" class="sheet-rival">
<input type="text" name="attr_friend_info" class="sheet-friend-info">
<input type="text" name="attr_friend_info1" class="sheet-friend-info">
</div>

<div class="sheet-row">
<input type="checkbox" name="attr_friend2" class="sheet-friend">
<input type="checkbox" name="attr_rival2" class="sheet-rival">
<input type="text" name="attr_friend_info" class="sheet-friend-info">
<input type="text" name="attr_friend_info2" class="sheet-friend-info">
</div>

<fieldset class="repeating_friend">
Expand Down

0 comments on commit 81bb75b

Please sign in to comment.