A couple vacpack and vorgan juice fixes

Vacpack now checks for spont prey pref.
Fixed vacpack direct targeted sucks missing their after-click doublechecks. (the cancel stuff for fleeing distance and things leaving/yoinked from the tile)
Fixed liquidbelly acid item interaction order (now does digest_act stuff first if in belly)
Fixed open containers eating up all liquids.
This commit is contained in:
Verkister
2023-05-11 15:49:49 +03:00
parent 6239d377ea
commit 92b321b906
3 changed files with 9 additions and 5 deletions
+1 -1
View File
@@ -273,7 +273,7 @@
touch(target, amount * multiplier) //First, handle mere touch effects
if(isturf(target))
return trans_to_turf(target, amount, multiplier, copy)
if(isobj(target) && target.is_open_container())
if(isobj(target) && target.is_open_container() && !isbelly(target.loc)) //CHOMPEdit
return trans_to_obj(target, amount, multiplier, copy)
return 0