Yayificaiton Update:

- Added some comments to circuit imprinter.
- Sleepypen nerfed from 50 units to 30 units. Still FAR more then you really need but still keeps them down for quite a while. However, how a pen holds more reagents then a syringe is beyond me.
- Changelog updated.
- Ghost Teleport now works.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@820 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
morikou@gmail.com
2011-01-09 06:45:27 +00:00
parent 28d376664c
commit e7783df73b
6 changed files with 63 additions and 80 deletions
+2 -2
View File
@@ -151,10 +151,10 @@
return
/obj/item/weapon/pen/sleepypen/New()
var/datum/reagents/R = new/datum/reagents(50) //Used to be 300
var/datum/reagents/R = new/datum/reagents(30) //Used to be 300
reagents = R
R.my_atom = src
R.add_reagent("chloralhydrate", 50) //Used to be 100 sleep toxin
R.add_reagent("chloralhydrate", 30) //Used to be 100 sleep toxin
// R.add_reagent("impedrezene", 100)
// R.add_reagent("cryptobiolin", 100)
..()