mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Update Chemistry-Reagents-Vore_vr.dm
This commit is contained in:
@@ -13,15 +13,7 @@
|
||||
mrate_static = TRUE
|
||||
|
||||
/datum/reagent/macrocillin/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
|
||||
<<<<<<< HEAD
|
||||
if(M.size_range_check(M.size_multiplier))
|
||||
M.resize(M.size_multiplier+0.01, FALSE)//Incrrease 1% per tick. //CHOMP Edit: don't do fancy animates. Unnecessary on 1% changes. Laggy.
|
||||
||||||| parent of 44088ebce8... Merge pull request #10092 from VOREStation/Arokha/resizepref
|
||||
if(M.size_range_check(M.size_multiplier))
|
||||
M.resize(M.size_multiplier+0.01)//Incrrease 1% per tick.
|
||||
=======
|
||||
M.resize(M.size_multiplier+0.01, uncapped = M.has_large_resize_bounds()) //Incrrease 1% per tick.
|
||||
>>>>>>> 44088ebce8... Merge pull request #10092 from VOREStation/Arokha/resizepref
|
||||
M.resize(M.size_multiplier+0.01, animate = FALSE, uncapped = M.has_large_resize_bounds()) //Incrrease 1% per tick. //CHOMP Edit: don't do fancy animates. Unnecessary on 1% changes. Laggy.
|
||||
return
|
||||
|
||||
/datum/reagent/microcillin
|
||||
@@ -34,15 +26,7 @@
|
||||
mrate_static = TRUE
|
||||
|
||||
/datum/reagent/microcillin/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
|
||||
<<<<<<< HEAD
|
||||
if(M.size_range_check(M.size_multiplier))
|
||||
M.resize(M.size_multiplier-0.01, FALSE) //Decrease 1% per tick. //CHOMP Edit: don't do fancy animates. Unnecessary on 1% changes. Laggy.
|
||||
||||||| parent of 44088ebce8... Merge pull request #10092 from VOREStation/Arokha/resizepref
|
||||
if(M.size_range_check(M.size_multiplier))
|
||||
M.resize(M.size_multiplier-0.01) //Decrease 1% per tick.
|
||||
=======
|
||||
M.resize(M.size_multiplier-0.01, uncapped = M.has_large_resize_bounds()) //Decrease 1% per tick.
|
||||
>>>>>>> 44088ebce8... Merge pull request #10092 from VOREStation/Arokha/resizepref
|
||||
M.resize(M.size_multiplier-0.01, animate = FALSE, uncapped = M.has_large_resize_bounds()) //Decrease 1% per tick. //CHOMP Edit: don't do fancy animates. Unnecessary on 1% changes. Laggy.
|
||||
return
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user