Spell Fixes

This commit is contained in:
Selis
2023-06-18 12:47:36 +02:00
parent f496497c55
commit 271ff9408f
91 changed files with 227 additions and 230 deletions
+2 -2
View File
@@ -750,7 +750,7 @@ var/global/list/belly_colorable_only_fullscreens = list("a_synth_flesh_mono",
if(!viable_candidates.len)
to_chat(user, "<span class='notice'>There are no viable candidates around you!</span>")
return TRUE
belly_owner = tgui_input_list(user, "Who do you want to recieve the target?", "Select Predator", viable_candidates)
belly_owner = tgui_input_list(user, "Who do you want to receive the target?", "Select Predator", viable_candidates)
if(!belly_owner || !(belly_owner in range(1, host)))
return TRUE
@@ -1264,7 +1264,7 @@ var/global/list/belly_colorable_only_fullscreens = list("a_synth_flesh_mono",
host.vore_selected.shrink_grow_size = (new_grow*0.01)
. = TRUE
if("b_nutritionpercent")
var/new_nutrition = tgui_input_number(user, "Choose the nutrition gain percentage you will recieve per tick from prey. Ranges from 0.01 to 100.", "Set Nutrition Gain Percentage.", host.vore_selected.nutrition_percent, 100, 0.01)
var/new_nutrition = tgui_input_number(user, "Choose the nutrition gain percentage you will receive per tick from prey. Ranges from 0.01 to 100.", "Set Nutrition Gain Percentage.", host.vore_selected.nutrition_percent, 100, 0.01)
if(new_nutrition == null)
return FALSE
var/new_new_nutrition = CLAMP(new_nutrition, 0.01, 100)