diff --git a/code/__HELPERS/vector.dm b/code/__HELPERS/vector.dm index dff3cefead..80295bde0e 100644 --- a/code/__HELPERS/vector.dm +++ b/code/__HELPERS/vector.dm @@ -35,7 +35,7 @@ /datum/vector/proc/is_integer() return ISINTEGER(x) && ISINTEGER(y) -/atom/movable/proc/datum/vector_translate(var/datum/vector/V, var/delay) +/atom/movable/proc/vector_translate(var/datum/vector/V, var/delay) var/turf/T = get_turf(src) var/turf/destination = locate(T.x + V.x, T.y + V.y, z) var/datum/vector/V_norm = V.duplicate() diff --git a/code/modules/food_and_drinks/drinks/drinks.dm b/code/modules/food_and_drinks/drinks/drinks.dm index 90a65831a4..19d0162a4c 100644 --- a/code/modules/food_and_drinks/drinks/drinks.dm +++ b/code/modules/food_and_drinks/drinks/drinks.dm @@ -144,9 +144,9 @@ return if (!user || user.incapacitated() || !user.Adjacent(src)) return - // Attempted drink sliding if (!(locate(/obj/structure/table) in src_location) || !(locate(/obj/structure/table) in over_location)) return + //Are we an expert slider? var/datum/action/innate/D = get_action_of_type(user, /datum/action/innate/drink_fling) if(!D?.active)