mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
Anti-Pref Break
This commit is contained in:
@@ -95,7 +95,7 @@
|
|||||||
var/list/potentials = living_mobs(0)
|
var/list/potentials = living_mobs(0)
|
||||||
if(potentials.len)
|
if(potentials.len)
|
||||||
var/mob/living/target = pick(potentials)
|
var/mob/living/target = pick(potentials)
|
||||||
if(istype(target) && vore_selected)
|
if(target.devourable && target.can_be_drop_prey && istype(target) && vore_selected)
|
||||||
target.forceMove(vore_selected)
|
target.forceMove(vore_selected)
|
||||||
to_chat(target,"<span class='warning'>\The [src] phases in around you, [vore_selected.vore_verb]ing you into their [vore_selected.name]!</span>")
|
to_chat(target,"<span class='warning'>\The [src] phases in around you, [vore_selected.vore_verb]ing you into their [vore_selected.name]!</span>")
|
||||||
|
|
||||||
|
|||||||
@@ -257,7 +257,7 @@
|
|||||||
var/list/potentials = living_mobs(0)
|
var/list/potentials = living_mobs(0)
|
||||||
if(potentials.len)
|
if(potentials.len)
|
||||||
var/mob/living/target = pick(potentials)
|
var/mob/living/target = pick(potentials)
|
||||||
if(istype(target) && vore_selected)
|
if(target.devourable && target.can_be_drop_prey && istype(target) && vore_selected)
|
||||||
if(target.buckled)
|
if(target.buckled)
|
||||||
target.buckled.unbuckle_mob(target, force = TRUE)
|
target.buckled.unbuckle_mob(target, force = TRUE)
|
||||||
target.forceMove(vore_selected)
|
target.forceMove(vore_selected)
|
||||||
|
|||||||
@@ -56,7 +56,7 @@
|
|||||||
var/list/potentials = living_mobs(0)
|
var/list/potentials = living_mobs(0)
|
||||||
if(potentials.len)
|
if(potentials.len)
|
||||||
var/mob/living/target = pick(potentials)
|
var/mob/living/target = pick(potentials)
|
||||||
if(istype(target) && vore_selected)
|
if(target.devourable && target.can_be_drop_prey && istype(target) && vore_selected)
|
||||||
target.forceMove(vore_selected)
|
target.forceMove(vore_selected)
|
||||||
to_chat(target,"<span class='warning'>\The [src] phases in around you, [vore_selected.vore_verb]ing you into their [vore_selected.name]!</span>")
|
to_chat(target,"<span class='warning'>\The [src] phases in around you, [vore_selected.vore_verb]ing you into their [vore_selected.name]!</span>")
|
||||||
|
|
||||||
@@ -203,7 +203,7 @@
|
|||||||
var/list/potentials = living_mobs(0)
|
var/list/potentials = living_mobs(0)
|
||||||
if(potentials.len)
|
if(potentials.len)
|
||||||
var/mob/living/target = pick(potentials)
|
var/mob/living/target = pick(potentials)
|
||||||
if(istype(target) && vore_selected)
|
if(target.devourable && target.can_be_drop_prey && istype(target) && vore_selected)
|
||||||
target.forceMove(vore_selected)
|
target.forceMove(vore_selected)
|
||||||
to_chat(target,"<span class='warning'>\The [src] phases in around you, [vore_selected.vore_verb]ing you into their [vore_selected.name]!</span>")
|
to_chat(target,"<span class='warning'>\The [src] phases in around you, [vore_selected.vore_verb]ing you into their [vore_selected.name]!</span>")
|
||||||
|
|
||||||
|
|||||||
@@ -44,7 +44,7 @@
|
|||||||
var/list/potentials = living_mobs(0)
|
var/list/potentials = living_mobs(0)
|
||||||
if(potentials.len)
|
if(potentials.len)
|
||||||
var/mob/living/target = pick(potentials)
|
var/mob/living/target = pick(potentials)
|
||||||
if(istype(target) && vore_selected)
|
if(target.devourable && target.can_be_drop_prey && istype(target) && vore_selected)
|
||||||
target.forceMove(vore_selected)
|
target.forceMove(vore_selected)
|
||||||
to_chat(target,"<span class='warning'>\The [src] phases in around you, [vore_selected.vore_verb]ing you into their [vore_selected.name]!</span>")
|
to_chat(target,"<span class='warning'>\The [src] phases in around you, [vore_selected.vore_verb]ing you into their [vore_selected.name]!</span>")
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user