summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/makeitem.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/makeitem.cc b/crawl-ref/source/makeitem.cc
index ff2fc0b3ac..499f3e6522 100644
--- a/crawl-ref/source/makeitem.cc
+++ b/crawl-ref/source/makeitem.cc
@@ -4506,14 +4506,14 @@ static jewellery_type _get_raw_random_ring_type()
jewellery_type get_random_ring_type()
{
const jewellery_type j = _get_raw_random_ring_type();
- // Adjusted distribution here -- bwr
+ // Adjusted distribution here. - bwr
if ((j == RING_INVISIBILITY
|| j == RING_REGENERATION
|| j == RING_TELEPORT_CONTROL
|| j == RING_SLAYING)
&& !one_chance_in(3))
{
- return _get_raw_random_ring_type();
+ return (_get_raw_random_ring_type());
}
return (j);