diff --git a/cmd/rolltable/main.go b/cmd/rolltable/main.go index 21dd25e..b76b622 100644 --- a/cmd/rolltable/main.go +++ b/cmd/rolltable/main.go @@ -4,15 +4,11 @@ // // -force deletes all old tables before removing new ones. // -// -n int The number of dice to generate rolls for (default 2). -// -// -d string The name of the die type to roll (default is "d6"). -// // Example: -// rolltable -n=3 -d="d6" -// Will generate the rolltable for 3d6. +// rolltable +// Will generate the rolltable for 2d6. // -// See https://godoc.org/github.com/sbrow/rolltable for info on the package. +// See package github.com/sbrow/prob/dice for info on the package. package main import ( @@ -22,8 +18,8 @@ import ( ) func main() { - n := flag.Int("n", 2, "The number of dice to generate rolls for") - d := flag.Int("d", 6, "The number of sides the die has") + // n := flag.Int("n", 2, "The number of dice to generate rolls for") + // d := flag.Int("d", 6, "The number of sides the die has") force := flag.Bool("force", false, "deletes all old tables before removing new ones") flag.Parse()