mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-25 13:09:11 +01:00
Absorb Prey Names (#18237)
* Absorb Prey Names * Test fixes (#15) * Automatic changelog compile [ci skip] * Floor tile placement and backend logic (#18228) * tiletweak * Update turfs.dm * Automatic changelog for PR #18228 [ci skip] * qucik test to telemetry (#18229) * qucik test to telemetry * . * Bump actions/checkout from 4 to 5 (#18233) Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Cell-Loaded Revolver Update (#18235) Co-authored-by: Aroliacue <avaylaiss34@gmail.com> * Automatic changelog for PR #18235 [ci skip] * Absorb Prey Names * Added warning + Fixed emotes --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: vorestation-ci[bot] <199609141+vorestation-ci[bot]@users.noreply.github.com> Co-authored-by: Cameron Lennox <killer65311@gmail.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Aroliacue <96730930+Aroliacue@users.noreply.github.com> Co-authored-by: Aroliacue <avaylaiss34@gmail.com> * Delete html/changelogs/AutoChangeLog-pr-18235.yml * Delete html/changelogs/AutoChangeLog-pr-18228.yml * why... * . --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: fracshun <fracshun@gmail.com> Co-authored-by: vorestation-ci[bot] <199609141+vorestation-ci[bot]@users.noreply.github.com> Co-authored-by: Cameron Lennox <killer65311@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Aroliacue <96730930+Aroliacue@users.noreply.github.com> Co-authored-by: Aroliacue <avaylaiss34@gmail.com>
This commit is contained in:
co-authored by
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Aroliacue
vorestation-ci[bot] <199609141+vorestation-ci[bot]@users.noreply.github.com>
Cameron Lennox
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Aroliacue
fracshun
vorestation-ci[bot] <199609141+vorestation-ci[bot]@users.noreply.github.com>
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
parent
61478b0f27
commit
eee14587ca
@@ -65,6 +65,14 @@
|
||||
/mob/proc/build_the_emote(m_type, message, input, range, runemessage)
|
||||
if(client)
|
||||
message = span_emote(span_bold("[src]") + " [input]")
|
||||
if(src.absorbed && isbelly(src.loc))
|
||||
var/obj/belly/B = src.loc
|
||||
if(B.absorbedrename_enabled)
|
||||
var/formatted_name = B.absorbedrename_name
|
||||
formatted_name = replacetext(formatted_name,"%pred",B.owner)
|
||||
formatted_name = replacetext(formatted_name,"%belly",B.name)
|
||||
formatted_name = replacetext(formatted_name,"%prey",name)
|
||||
message = span_emote(span_bold("[formatted_name]") + " [input]")
|
||||
else
|
||||
message = span_npc_emote(span_bold("[src]") + " [input]")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user