Fixed probability of misuse.

Using the lighter incorrectly is now (1/2)(5%) and (1/2)(1%) rather than the demo probability of 25% each.
This commit is contained in:
Digi Purpur
2023-06-16 14:51:47 -07:00
parent bb2be4cf33
commit 342a1bac19
@@ -30,7 +30,7 @@
if(prob(50))
user.visible_message("<span class='rose'>[user] safely activates the [src] with a push of a button!</span>")
else
if(prob(50))
if(prob(95))
user.visible_message("<span class='notice'>After a few attempts, [user] manages to excite the supermatter within the [src].</span>")
else
to_chat(user, "<span class='warning'>You hurt yourself on the shielding!</span>")
@@ -101,7 +101,7 @@
if(prob(50))
user.visible_message("<span class='rose'>[user] safely activates the [src] with a push of a button!</span>")
else
if(prob(50))
if(prob(99))
user.visible_message("<span class='notice'>After a few attempts, [user] manages to excite the supermatter within the [src].</span>")
else
to_chat(user, "<span class='warning'>You singe yourself on the phoron shielding the excited supermatter!</span>")