diff --git a/main.go b/main.go index 3edfd2c..010c5a9 100644 --- a/main.go +++ b/main.go @@ -47,7 +47,11 @@ func main() { } default: - fmt.Println(string(ColorYellow), "Rolling dice...:", string(ColorReset)) + if diceThrows <= 1 { + fmt.Println(string(ColorYellow), "Rolling die...:", string(ColorReset)) + } else{ + fmt.Println(string(ColorYellow), "Rolling",diceThrows,"dice...:", string(ColorReset)) + } Cast(surfaces, diceThrows) } }