mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-24 12:37:50 +01:00
Fixes dumb typos
This commit is contained in:
@@ -61,7 +61,7 @@ GLOBAL_VAR(size_uncapped_mobs_timer)
|
||||
return TRUE
|
||||
|
||||
/proc/add_to_uncapped_list(var/mob/living/L)
|
||||
if(L.size_uncapped = TRUE)
|
||||
if(L.size_uncapped)
|
||||
return
|
||||
if(!GLOB.size_uncapped_mobs.len)
|
||||
GLOB.size_uncapped_mobs_timer = addtimer(CALLBACK(GLOBAL_PROC, .check_uncapped_list), 2 SECONDS, TIMER_LOOP | TIMER_UNIQUE | TIMER_STOPPABLE)
|
||||
|
||||
@@ -100,8 +100,8 @@
|
||||
if(istype(M))
|
||||
M.resize(set_size, TRUE, TRUE)
|
||||
if(set_size >= RESIZE_TINY && set_size <= RESIZE_HUGE)
|
||||
M.uncapped_size = FALSE
|
||||
M.uncapped_size = TRUE
|
||||
M.size_uncapped = FALSE
|
||||
M.size_uncapped = TRUE
|
||||
to_chat(M, "<font color='blue'>The beam fires into your body, changing your size!</font>")
|
||||
M.updateicon()
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user