Skip to content

Commit

Permalink
cosmetics
Browse files Browse the repository at this point in the history
  • Loading branch information
nhanb committed Sep 17, 2023
1 parent f5eb120 commit 7c17bc9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ Here are the currently supported options:
-size int
Size multiplier: make Gura as big as you want (default 1)
-stop int
chance to stop walking, in % (default 40)
Chance to stop walking, in % (default 40)
-walk int
chance to start walking, in % (default 5)
Chance to start walking, in % (default 5)
-x int
X position on screen (default 9999)
-y int
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ func main() {
)
flag.IntVar(&xFlag, "x", 9999, "X position on screen")
flag.IntVar(&yFlag, "y", 9999, "Y position on screen")
flag.IntVar(&WalkChance, "walk", 5, "chance to start walking, in %")
flag.IntVar(&StopChance, "stop", 40, "chance to stop walking, in %")
flag.IntVar(&WalkChance, "walk", 5, "Chance to start walking, in %")
flag.IntVar(&StopChance, "stop", 40, "Chance to stop walking, in %")
flag.Parse()

DurationTillHungry = time.Duration(secondsUntilHungryFlag) * 1_000_000_000
Expand Down

0 comments on commit 7c17bc9

Please sign in to comment.