summaryrefslogtreecommitdiff |
diff options
author | nsensfel <SpamShield0@noot-noot.org> | 2018-02-09 19:16:30 +0100 |
---|---|---|
committer | nsensfel <SpamShield0@noot-noot.org> | 2018-02-09 19:16:30 +0100 |
commit | 73f531db4d999217447aff616313f6532a579610 (patch) | |
tree | 2bd04a6e393c70a60de444135a90a6cc4e27efdc | |
parent | d3c17bd9deff37e8b88c72dccf3130f7aeb69fb6 (diff) |
Changes the rand speed so that it can go lower
-rw-r--r-- | src/type/attributes_shim.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/type/attributes_shim.erl b/src/type/attributes_shim.erl index 6378162..b80ee6d 100644 --- a/src/type/attributes_shim.erl +++ b/src/type/attributes_shim.erl @@ -42,6 +42,6 @@ rand () -> dexterity = random_attribute(10, 100), intelligence = random_attribute(10, 100), mind = random_attribute(10, 100), - speed = random_attribute(40, 100), + speed = random_attribute(10, 100), strength = random_attribute(10, 100) }. |