mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-24 13:38:41 +01:00
[MIRROR] individual LOG_GAME [MDB IGNORE] (#15401)
* individual LOG_GAME * e * Update teleporter.dm Co-authored-by: Mooshimi <85910816+Mooshimi@users.noreply.github.com> Co-authored-by: Gandalf <9026500+Gandalf2k15@users.noreply.github.com>
This commit is contained in:
co-authored by
Mooshimi
Gandalf
parent
51910c103f
commit
6016cf97b4
@@ -18,7 +18,7 @@
|
||||
spawned_human.mind.add_antag_datum(fughunter)
|
||||
fughunter.greet()
|
||||
message_admins("[ADMIN_LOOKUPFLW(spawned_human)] has been made into a Fugitive Hunter by an event.")
|
||||
log_game("[key_name(spawned_human)] was spawned as a Fugitive Hunter by an event.")
|
||||
spawned_human.log_message("was spawned as a Fugitive Hunter by an event.", LOG_GAME)
|
||||
|
||||
/obj/effect/mob_spawn/ghost_role/human/fugitive/spacepol
|
||||
name = "police pod"
|
||||
|
||||
@@ -55,7 +55,7 @@
|
||||
try_keep_home(new_spawn)
|
||||
else
|
||||
new_spawn.mind.enslave_mind_to_creator(owner)
|
||||
log_game("[key_name(new_spawn)] possessed a golem shell enslaved to [key_name(owner)].")
|
||||
new_spawn.log_message("possessed a golem shell enslaved to [key_name(owner)].", LOG_GAME)
|
||||
log_admin("[key_name(new_spawn)] possessed a golem shell enslaved to [key_name(owner)].")
|
||||
if(ishuman(new_spawn))
|
||||
var/mob/living/carbon/human/H = new_spawn
|
||||
@@ -85,7 +85,7 @@
|
||||
return
|
||||
if(QDELETED(src) || uses <= 0)
|
||||
return
|
||||
log_game("[key_name(H)] golem-swapped into [src]")
|
||||
H.log_message("golem-swapped into [src].", LOG_GAME)
|
||||
H.visible_message(span_notice("A faint light leaves [H], moving to [src] and animating it!"),span_notice("You leave your old body behind, and transfer into [src]!"))
|
||||
show_flavor = FALSE
|
||||
var/mob/living/carbon/human/newgolem = create(newname = H.real_name)
|
||||
|
||||
@@ -183,7 +183,7 @@
|
||||
return
|
||||
if(QDELETED(src) || QDELETED(user))
|
||||
return
|
||||
log_game("[key_name(user)] became a [prompt_name]")
|
||||
user.log_message("became a [prompt_name].", LOG_GAME)
|
||||
create(user)
|
||||
|
||||
/obj/effect/mob_spawn/ghost_role/special(mob/living/spawned_mob, mob/mob_possessor)
|
||||
|
||||
Reference in New Issue
Block a user