Skip to content

Commit

Permalink
Changed the style of the gender indicators on the status bars
Browse files Browse the repository at this point in the history
It’s even more minimalistic than before.
  • Loading branch information
varkor committed Jan 7, 2016
1 parent d03afa7 commit 04ca225
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions battle/scripts/objects/general/BattleContext.js
Original file line number Diff line number Diff line change
Expand Up @@ -464,15 +464,8 @@ function BattleContext (client) {
if (gender !== "neuter")
shapes = shapes.concat([
{
points : [{ x : 82, y : -16 }, { x : 106 }, { x : 122, y : 0 }, { x : 98 }],
points : [{ x : 82, y : -16 }, { x : 86 }, { x : 102, y : 0 }, { x : 98 }],
colour : (gender === "male" ? "hsl(195, 100%, 45%)" : "hsl(325, 100%, 80%)")
},
{
text : (gender === "male" ? "♂" : "♀"),
position : { x : (82 + 122) / 2, y : (-16 + 0) / 2 },
align : { x : "center", y : "middle" },
colour : (gender === "male" ? "hsl(195, 100%, 5%)" : "hsl(325, 100%, 40%)"),
font : Font.load(12 * Game.zoom)
}
]);
if (right) {
Expand Down

0 comments on commit 04ca225

Please sign in to comment.