diff --git a/main.go b/main.go index a8fd93d..5d34e4d 100644 --- a/main.go +++ b/main.go @@ -6,6 +6,7 @@ import ( "math/bits" "os" "strings" + "strconv" ) func main() { @@ -294,10 +295,10 @@ func maleAvatar(seed uint64) string { // Mustache (50% chance) g.pickAorB(0.5, g.pickOne([]string{ - "", - "", - "", - "", + "", + "", + "", + "", }), ""), // Mouth @@ -373,6 +374,7 @@ func maleAvatar(seed uint64) string { "${eyesColor}", eyesColor.html(), "${eyebrowsColor}", eyebrowsColor.html(), "${mustacheColor}", mustacheColor.html(), + "${mustacheColorAlpha}", strconv.Itoa(int(mustacheColor.a)), "${mouthColor}", mouthColor.html(), "${glassesColor}", glassesColor.html(), "${clothesColor}", clothesColor.html(),