Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit f136c19

Browse files
Merge branch 'yogstation13:master' into tank-cr
2 parents cb12e74 + 7cf7e29 commit f136c19

File tree

5 files changed

+41
-53
lines changed

5 files changed

+41
-53
lines changed

code/game/objects/structures/tables_racks.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@
210210
I.pixel_x = clamp(text2num(click_params["icon-x"]) - 16, -(world.icon_size/2), world.icon_size/2)
211211
I.pixel_y = clamp(text2num(click_params["icon-y"]) - 16, -(world.icon_size/2), world.icon_size/2)
212212
return 1
213-
else if(!user.combat_mode) // can't drop the item but not in combat mode, try deconstructing instead
213+
else if(!user.combat_mode && !(I.item_flags & ABSTRACT)) // can't drop the item but not in combat mode, try deconstructing instead
214214
return attackby_secondary(I, user, params)
215215
else
216216
return ..()

code/modules/events/anomaly/anomaly.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
announce_when = ANOMALY_ANNOUNCE_HARMFUL_TIME
1717
var/area/impact_area
1818
var/datum/anomaly_placer/placer = new()
19-
var/obj/effect/anomaly/anomaly_path = /obj/effect/anomaly/flux
19+
var/obj/effect/anomaly/anomaly_path = /obj/effect/anomaly/flux/explosion
2020
///The admin-chosen spawn location.
2121
var/turf/spawn_location
2222

code/modules/mob/living/emote.dm

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,25 @@
173173
emote_type = EMOTE_AUDIBLE
174174
stat_allowed = UNCONSCIOUS
175175

176+
/datum/emote/living/gasp/get_sound(mob/living/user)
177+
if(!ishuman(user))
178+
return
179+
var/mob/living/carbon/human/human_user = user
180+
if(ishumanbasic(human_user) || iscatperson(human_user) && !HAS_MIND_TRAIT(human_user, TRAIT_MIMING))
181+
if(human_user.gender == FEMALE)
182+
return pick('sound/voice/human/gasp_female1.ogg', 'sound/voice/human/gasp_female2.ogg', 'sound/voice/human/gasp_female3.ogg')
183+
else
184+
return pick('sound/voice/human/gasp_male1.ogg', 'sound/voice/human/gasp_male2.ogg')
185+
186+
/datum/emote/living/gasp/gasp_shock
187+
key = "gaspshock"
188+
key_third_person = "gaspsshock"
189+
message = "gasps in shock!"
190+
message_mime = "gasps in silent shock!"
191+
cooldown = 2 SECONDS
192+
emote_type = EMOTE_VISIBLE | EMOTE_AUDIBLE
193+
stat_allowed = SOFT_CRIT
194+
176195
/datum/emote/living/giggle
177196
key = "giggle"
178197
key_third_person = "giggles"
@@ -474,25 +493,6 @@
474493
message = "yawns."
475494
emote_type = EMOTE_AUDIBLE
476495

477-
/datum/emote/living/gasp_shock
478-
key = "gaspshock"
479-
key_third_person = "gaspsshock"
480-
message = "gasps in shock!"
481-
message_mime = "gasps in silent shock!"
482-
cooldown = 2 SECONDS
483-
emote_type = EMOTE_VISIBLE | EMOTE_AUDIBLE
484-
stat_allowed = SOFT_CRIT
485-
486-
/datum/emote/living/gasp_shock/get_sound(mob/living/user)
487-
if(!ishuman(user))
488-
return
489-
var/mob/living/carbon/human/human_user = user
490-
if(ishumanbasic(human_user) || iscatperson(human_user) && !HAS_MIND_TRAIT(human_user, TRAIT_MIMING))
491-
if(human_user.gender == FEMALE)
492-
return pick('sound/voice/human/gasp_female1.ogg', 'sound/voice/human/gasp_female2.ogg', 'sound/voice/human/gasp_female3.ogg')
493-
else
494-
return pick('sound/voice/human/gasp_male1.ogg', 'sound/voice/human/gasp_male2.ogg')
495-
496496
/datum/emote/living/custom
497497
key = "me"
498498
key_third_person = "custom"

html/changelog.html

Lines changed: 13 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,19 @@
5757
-->
5858
<div class="commit sansserif">
5959

60+
<h2 class="date">10 December 2024</h2>
61+
<h3 class="author">warface1234455 updated:</h3>
62+
<ul class="changes bgimages16">
63+
<li class="bugfix">Fix unable to slap table normally</li>
64+
</ul>
65+
66+
<h2 class="date">09 December 2024</h2>
67+
<h3 class="author">warface1234455 updated:</h3>
68+
<ul class="changes bgimages16">
69+
<li class="rscadd">Allows normal gasp emote to have sound too</li>
70+
<li class="bugfix">FIX FLUX ROUND EVENT NOT EXPLODING</li>
71+
</ul>
72+
6073
<h2 class="date">08 December 2024</h2>
6174
<h3 class="author">Oblisk234 updated:</h3>
6275
<ul class="changes bgimages16">
@@ -774,38 +787,6 @@ <h3 class="author">glaenjoyer, ToasterBiome updated:</h3>
774787
<ul class="changes bgimages16">
775788
<li class="tweak">You can no longer RCD space transit tiles if it's not part of a shuttle</li>
776789
</ul>
777-
778-
<h2 class="date">10 September 2024</h2>
779-
<h3 class="author">Cowbot92 & dcxgame updated:</h3>
780-
<ul class="changes bgimages16">
781-
<li class="rscadd">Adds a new station side pet</li>
782-
<li class="imageadd">Adds a new station side pet sprites</li>
783-
<li class="mapping">Adds a new station side pet to all active maps</li>
784-
</ul>
785-
<h3 class="author">MrMelbert, ToasterBiome updated:</h3>
786-
<ul class="changes bgimages16">
787-
<li class="tweak">People start slurring at drunk level 16 now instead of 51</li>
788-
<li class="rscadd">people slur at different drunk levels now</li>
789-
</ul>
790-
<h3 class="author">SapphicOverload updated:</h3>
791-
<ul class="changes bgimages16">
792-
<li class="experiment">Added overheat mechanics to exosuits</li>
793-
<li class="bugfix">Fixed charge and integrity not updating properly on diagnostic HUD</li>
794-
<li class="bugfix">Probably other stuff that I forgot about</li>
795-
<li class="imageadd">Added HUD icons for overheating</li>
796-
<li class="imageadd">Added sprites for new mech equipment</li>
797-
</ul>
798-
<h3 class="author">cowbot92 updated:</h3>
799-
<ul class="changes bgimages16">
800-
<li class="rscadd">Added new traitor mech item: The IA-C01G AORTA</li>
801-
<li class="rscadd">Adds new station side activity: Backrooms exploration</li>
802-
<li class="rscadd">Adds new relics to the backrooms</li>
803-
<li class="rscadd">Adds new monsters to the backrooms</li>
804-
<li class="wip">This is work in progress</li>
805-
<li class="imageadd">new sprites may be added</li>
806-
<li class="mapping">Adds a new area to enter the backrooms on station</li>
807-
<li class="experiment">This is experimental</li>
808-
</ul>
809790
</div>
810791

811792
<b>GoonStation 13 Development Team</b>

html/changelogs/.all_changelog.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45775,3 +45775,10 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py.
4577545775
- bugfix: Fixed containers not picking up and emptying items properly
4577645776
ToasterBiome:
4577745777
- bugfix: Ghost "Enable PDA notifications" setting will now function correctly
45778+
2024-12-09:
45779+
warface1234455:
45780+
- rscadd: Allows normal gasp emote to have sound too
45781+
- bugfix: FIX FLUX ROUND EVENT NOT EXPLODING
45782+
2024-12-10:
45783+
warface1234455:
45784+
- bugfix: Fix unable to slap table normally

0 commit comments

Comments
 (0)