I ain't gonna lie, this is a pretty big revision.

Chemistry:
     I added a new variable to each reagent called "color". It's a hexadecimal string used to give a reagent a unique color for use in future shenanigans that are in development atm. Updooted the Chemistry-Readme.dm file to include some other variables I included into the recipie system as well as this new color variable. Implementing these colors is still an ongoing effort, and yes you will be able to "blend" these colors.


Viruses:
     Nothing has been CHANGED (yet) but there is some framework for a new virus system to work alongside our current one, special thanks to Googolplexed of Baystation 12! If this weren't tied to some other things I changed, I wouldn't be committing this in the first place. While experimental, you shouldn't even notice this exists.


!!BUGFIXES!!:
     Wow, there's so many I'm having a hard time keeping track of it all!

     A bunch of runtime errors were hopefully fixed. There were some problems with slicing stuff spitting out runtime errors because an istype() was missing. The same goes for ritual tomes and some other things. Medical cyborgs were also fixed: their pills will now recharge properly and stop spitting out atrocious runtime errors. 

     It was intended for it to be possible to shoot people on top of Mulebots, but a runtime error always cut the proc off before it could execute. This has been fixed.

     There are probably some other things I'm missing, but all in all, that's about it for the bugfixes.
     


git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1905 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
vageyenaman@gmail.com
2011-07-22 22:42:59 +00:00
parent c8a01f0b29
commit c9d1e3452f
21 changed files with 673 additions and 34 deletions
+12 -1
View File
@@ -135,6 +135,7 @@
verbs += /client/proc/jumptokey
verbs += /client/proc/jumptomob
verbs += /client/proc/jumptoturf
//verbs += /client/proc/givedisease
verbs += /client/proc/cmd_admin_add_freeform_ai_law
verbs += /client/proc/cmd_admin_add_random_ai_law
@@ -268,7 +269,6 @@
verbs += /client/proc/cmd_admin_ninjafy //N
//verbs += /client/proc/makepAI // -- TLE
verbs += /client/proc/respawn_character //N
verbs += /client/proc/Getmob
verbs += /client/proc/sendmob
verbs += /client/proc/Jump
@@ -1488,6 +1488,17 @@
kill_air = 1
usr << "<b>Disabled air processing.</b>"
/*
/client/proc/givedisease(var/mob/living/carbon/M in world)
set category = "Debug"
set name = "Give disease 2.0"
set desc = "Does what it says on the tin"
infect_mob_random(M)
message_admins("\blue [src.ckey] infected [M.real_name]([M.ckey]) with a random disease 2.0")
*/
/client/proc/unstealthadmin()
set name = "Toggle admin verb visibility"
set category = "Admin"