aboutsummaryrefslogtreecommitdiff
path: root/games/dr.sh
diff options
context:
space:
mode:
Diffstat (limited to 'games/dr.sh')
-rw-r--r--games/dr.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/games/dr.sh b/games/dr.sh
index dbb8292f..df21d7a5 100644
--- a/games/dr.sh
+++ b/games/dr.sh
@@ -22,8 +22,7 @@ esac
# Roll the dice the appropriate number of times using rndi(1df)
i=0 t=0
while [ "$i" -lt "$n" ] ; do
- seed=$(rnds)
- r=$(rndi 1 "$d" "$seed")
+ r=$(rndi 1 "$d")
t=$((t + r))
i=$((i + 1))
done