mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-29 16:19:36 +01:00
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:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user