Fixing old and new issues alike. (#12281)

This commit is contained in:
Ghom
2020-05-18 01:47:53 +02:00
committed by GitHub
parent 12ac08d7c5
commit d8d59e5052
8 changed files with 17 additions and 20 deletions
+1 -1
View File
@@ -542,7 +542,7 @@
if (!(R in contents))
return // User is not in this belly
R.setClickCooldown(50)
R.changeNext_move(CLICK_CD_BREAKOUT*0.5)
if(owner.stat) //If owner is stat (dead, KO) we can actually escape
to_chat(R,"<span class='warning'>You attempt to climb out of \the [lowertext(name)]. (This will take around [escapetime/10] seconds.)</span>")
+4 -1
View File
@@ -358,6 +358,9 @@
if(incapacitated(ignore_restraints = TRUE))
to_chat(src, "<span class='warning'>You can't do that while incapacitated.</span>")
return
if(next_move > world.time)
to_chat(src, "<span class='warning'>You can't do that so fast, slow down.</span>")
return
var/list/choices
for(var/mob/living/L in view(1))
@@ -372,7 +375,7 @@
if(QDELETED(tasted) || (tasted.ckey && !(tasted.client?.prefs.vore_flags & LICKABLE)) || !Adjacent(tasted) || incapacitated(ignore_restraints = TRUE))
return
setClickCooldown(100)
changeNext_move(CLICK_CD_MELEE)
visible_message("<span class='warning'>[src] licks [tasted]!</span>","<span class='notice'>You lick [tasted]. They taste rather like [tasted.get_taste_message()].</span>","<b>Slurp!</b>")