summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2021-06-16 20:12:18 -0400
committerDavid Gay <david@davidgay.org>2021-06-16 20:19:16 -0400
commit212c104c2020faddcb2949bc8f11e15c8284fb52 (patch)
tree4438de9d37aa69ebf3ed3028db10a3a8351381a3 /app
parentcece9dd05cb339dca40470cf1f1729a8a8a355fd (diff)
Change item infix break chance to 1/500
Diffstat (limited to 'app')
-rw-r--r--app/models/item_infix.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/item_infix.rb b/app/models/item_infix.rb
index 47b6aa4..b59ccdb 100644
--- a/app/models/item_infix.rb
+++ b/app/models/item_infix.rb
@@ -10,7 +10,7 @@ class ItemInfix < ApplicationRecord
end
def break_check
- rand > 0.999 ? destroy : false
+ rand > 0.998 ? destroy : false
end
private