* Admins can now bypass the vote creation cooldown.

* Messages in a mob's say_log var are now timestamped and include the coordinates of the mob at the time.
* Fix oil slime extract explosion reaction not being logged.
* Fixes lack of log for reagent explosion.
* Mob's attack_log now show when the mob was electrocuted. Doors get an electrification log when electrified (including via an EMP).
* Fixes gibself admin log showing null instead of the key.
This commit is contained in:
phil235
2016-04-29 18:21:53 +02:00
parent f1737eed34
commit 4efb343d77
12 changed files with 45 additions and 19 deletions
+6 -1
View File
@@ -60,7 +60,12 @@
D.locked = !D.locked
D.update_icon()
if(specialfunctions & SHOCK)
D.secondsElectrified = D.secondsElectrified ? 0 : -1
if(D.secondsElectrified)
D.secondsElectrified = -1
D.shockedby += "\[[time_stamp()]\][usr](ckey:[usr.ckey])"
add_logs(usr, D, "electrified")
else
D.secondsElectrified = 0
if(specialfunctions & SAFE)
D.safe = !D.safe
sleep(10)