Merge branch 'master' of https://github.com/Citadel-Station-13/Citadel-Station-13 into proc-define-shit

This commit is contained in:
SandPoot
2024-03-08 19:10:22 -03:00
810 changed files with 140372 additions and 5523 deletions
+13 -13
View File
@@ -603,35 +603,35 @@
//Bad mobs! - Remember to add a comment explaining what's wrong with the mob
if(!MP)
return 0 //Sanity, this should never happen.
return FALSE //Sanity, this should never happen.
if(ispath(MP, /mob/living/simple_animal/hostile/construct))
return 0 //Verbs do not appear for players.
return FALSE //Verbs do not appear for players.
//Good mobs!
if(ispath(MP, /mob/living/simple_animal/pet/cat))
return 1
return TRUE
if(ispath(MP, /mob/living/simple_animal/pet/dog/corgi))
return 1
return TRUE
if(ispath(MP, /mob/living/simple_animal/crab))
return 1
return TRUE
if(ispath(MP, /mob/living/simple_animal/hostile/carp))
return 1
return TRUE
if(ispath(MP, /mob/living/simple_animal/hostile/mushroom))
return 1
return TRUE
if(ispath(MP, /mob/living/simple_animal/hostile/construct/shade))
return 1
return TRUE
if(ispath(MP, /mob/living/simple_animal/hostile/killertomato))
return 1
return TRUE
if(ispath(MP, /mob/living/simple_animal/mouse))
return 1 //It is impossible to pull up the player panel for mice (Fixed! - Nodrak)
return TRUE //It is impossible to pull up the player panel for mice (Fixed! - Nodrak)
if(ispath(MP, /mob/living/simple_animal/hostile/bear))
return 1 //Bears will auto-attack mobs, even if they're player controlled (Fixed! - Nodrak)
return TRUE //Bears will auto-attack mobs, even if they're player controlled (Fixed! - Nodrak)
if(ispath(MP, /mob/living/simple_animal/parrot))
return 1 //Parrots are no longer unfinished! -Nodrak
return TRUE //Parrots are no longer unfinished! -Nodrak
//Not in here? Must be untested!
return 0
return FALSE
#undef TRANSFORMATION_DURATION