Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Stars Without Number Skill Bug

Hey guys, I was recently creating a SWN character, and I noticed that the character sheet is bugged under the skill section: All the skills in the left hand side seem to be bugged because of the 2 lined Combat/Energy Weapons, Combat/Primitive Weapons and Combat/Projectile Weapons. I was wondering if the creator has a fix for this? Or maybe it's just me, cheers :)
1428788825

Edited 1428788893
I am also having this problem, the skills on the first column are not lining up with the boxes.
Yeah, when it got a visual update something went wrong. As a mentor, one can temporarily fix this by simply removing the word "Weapons" from the skills, and then the issue will be mostly solved (There are ways to *actually* repairing it, but I am utterly worthless when it comes to these technical things, so I have no clue how to do that).
1428832962
Finderski
Plus
Sheet Author
Compendium Curator
In looking at the code for the character, the problem is that the skill labels, and the skill input fields are in separate <div> columns in the same <div> row. What really should be done is to put the input field in the same row of the <div> column. Now, to try that a different way without the <div> tags. :) Think of the sheet as having a single row that contains 4, independent columns, and each column has it's own set of multiple rows (kind of like a nested table within a single row). Column 1 contains the skill labels, column 2 contains the input fields, column 3 contains more skill labels, and column 4 contains more skill input fields. Because the columns are independent of one another, when a row in column takes up 2 rows, the corresponding row in column 2 doesn't. The way to fix that would be to put the input fields for the column 1 labels into column 1. Here's the way it looks when you do that: I can send someone the code for the skills section that would resolve this issue, but I don't want to submit it myself, because the last time I tried to do that for someone else's sheet my github stuff got royally hosed and then I couldn't even submit changes to the character sheet I do own for several weeks while I tried to work through the issue. So, if someone wants to PM me their e-mail address, I can send someone the new skills section code that would resolve this.
1429638790
Kevin
Pro
Sheet Author
API Scripter
Hey guys, creator/maintainer of the SWN sheet here. I do not have time to check the Roll20 forums for instances of this sheet name coming up. It would really help if you send an email to the address listed with the character sheet info (in your campaign settings) or submit an issue through Roll20's Github repo for character sheets. Even a PM here on Roll20 works. All of those definitely get my attention, while posts here will just languish unless I happen to catch them. Anyway, I've known about this bug for a few weeks but have been unable to dedicate time to fixing it until last night. PR is submitted so it will be corrected when Roll20 makes an update.
1429639373

Edited 1429639498
Kevin
Pro
Sheet Author
API Scripter
<a href="https://github.com/Roll20/roll20-character-sheets/pull/795" rel="nofollow">https://github.com/Roll20/roll20-character-sheets/pull/795</a> The fix looks like: <a href="https://github.com/kevinsearle/roll20-character-sh" rel="nofollow">https://github.com/kevinsearle/roll20-character-sh</a>... Even more changes are in the pipeline.