Skip to content

Commit

Permalink
Merge branch 'SPLURT-Station:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
JWosak authored Nov 3, 2024
2 parents 68af558 + 0d8acbb commit 3a72799
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 18 deletions.
18 changes: 8 additions & 10 deletions code/modules/admin/view_variables/debug_variable_appearance.dm
Original file line number Diff line number Diff line change
Expand Up @@ -59,25 +59,23 @@ GLOBAL_DATUM_INIT(pluto, /atom/movable, new /atom/movable(null))
if(beloved.vars.Find(var_name)) // If datums have it, get out
return FALSE
// If it is one of the two args on /image, yeet (I am sorry)
if(var_name == NAMEOF(src, realized_overlays))
if(var_name == "realized_overlays")
return FALSE
if(var_name == NAMEOF(src, realized_underlays))
if(var_name == "realized_underlays")
return FALSE
// Filtering out the stuff I know we don't care about
if(var_name == NAMEOF(src, x))
if(var_name == "x")
return FALSE
if(var_name == NAMEOF(src, y))
if(var_name == "y")
return FALSE
if(var_name == NAMEOF(src, z))
if(var_name == "z")
return FALSE
// Could make an argument for these but I think they will just confuse people, so yeeet
#ifndef SPACEMAN_DMM // Spaceman doesn't believe in contents on appearances, sorry lads
if(var_name == NAMEOF(src, contents))
if(var_name == "contents")
return FALSE
#endif
if(var_name == NAMEOF(src, loc))
if(var_name == "loc")
return FALSE
if(var_name == NAMEOF(src, vis_contents))
if(var_name == "vis_contents")
return FALSE
return ..()

Expand Down
5 changes: 5 additions & 0 deletions html/changelogs/archive/2024-11.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
2024-11-03:
Meghan-Rossi:
- server: Server can now be compiled on byond 515.1543
MosleyTheMalO:
- bugfix: Fixes the snap on dominant aura
7 changes: 3 additions & 4 deletions modular_splurt/code/datums/traits/good.dm
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,11 @@
sub.dir = turn(get_dir(sub, quirk_holder), pick(-90, 90))
sub.emote("blush")

/datum/quirk/dominant_aura/proc/handle_snap(datum/source, list/emote_args)
/datum/quirk/dominant_aura/proc/handle_snap(datum/source, datum/emote/emote)
SIGNAL_HANDLER

. = FALSE
var/key = GLOB.emote_list[lowertext(emote_args[EMOTE_ACT])]
if(TIMER_COOLDOWN_CHECK(quirk_holder, COOLDOWN_DOMINANT_SNAP) || !findtext(key, "snap"))
if(TIMER_COOLDOWN_CHECK(quirk_holder, COOLDOWN_DOMINANT_SNAP) || !findtext(emote.key, "snap"))
return
for(var/mob/living/carbon/human/sub in hearers(DOMINANT_DETECT_RANGE, quirk_holder))
if(!sub.has_quirk(/datum/quirk/well_trained) || (sub == quirk_holder))
Expand All @@ -108,7 +107,7 @@
good_x = "boy"
if(FEMALE)
good_x = "girl"
switch(key)
switch(emote.key)
if("snap")
sub.dir = get_dir(sub, quirk_holder)
sub.emote(pick("blush", "pant"))
Expand Down
3 changes: 0 additions & 3 deletions modular_splurt/code/modules/mob/emote.dm

This file was deleted.

1 change: 0 additions & 1 deletion tgstation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -4922,7 +4922,6 @@
#include "modular_splurt\code\modules\mining\equipment\kinetic_crusher.dm"
#include "modular_splurt\code\modules\mining\equipment\machine_vending.dm"
#include "modular_splurt\code\modules\mining\lavaland\necropolis_chests.dm"
#include "modular_splurt\code\modules\mob\emote.dm"
#include "modular_splurt\code\modules\mob\femclaw.dm"
#include "modular_splurt\code\modules\mob\inventory.dm"
#include "modular_splurt\code\modules\mob\mob.dm"
Expand Down

0 comments on commit 3a72799

Please sign in to comment.