Skip to content

Commit

Permalink
timestamp fix fix
Browse files Browse the repository at this point in the history
  • Loading branch information
realforest2001 committed Jul 27, 2023
1 parent 07560cd commit 99847d5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion code/game/objects/items/explosives/grenades/marines.dm
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@

playsound(smacked.loc, impact_sound, 75, 1)
smacked.apply_damage(impact_damage, BRUTE)
smacked.attack_log += "[\[time_stamp()]\] [src], fired by [fingerprintslast], struck [key_name(smacked)]."
smacked.attack_log += "\[[time_stamp()]\] [src], fired by [fingerprintslast], struck [key_name(smacked)]."

random_tile = get_random_turf_in_range(src,ram_distance,ram_distance) //getting random tile for bounce
src.throw_atom(random_tile,ram_distance,SPEED_FAST,src,TRUE,NORMAL_LAUNCH,NO_FLAGS) //time for a little trolling
Expand Down
4 changes: 2 additions & 2 deletions code/modules/projectiles/projectile.dm
Original file line number Diff line number Diff line change
Expand Up @@ -505,8 +505,8 @@

var/mob/living/carbon/shotby = firer
if(istype(shotby))
L.attack_log += "[\[time_stamp()]\] [src], fired by [key_name(firer)], narrowly missed [key_name(L)]"
shotby.attack_log += "[\[time_stamp()]\] [src], fired by [key_name(shotby)], narrowly missed [key_name(L)]"
L.attack_log += "\[[time_stamp()]\] [src], fired by [key_name(firer)], narrowly missed [key_name(L)]"
shotby.attack_log += "\[[time_stamp()]\] [src], fired by [key_name(shotby)], narrowly missed [key_name(L)]"
log_message = "[src], fired by [key_name(firer)], narrowly missed [key_name(L)]"
log_attack(log_message)

Expand Down

0 comments on commit 99847d5

Please sign in to comment.