Skip to content

Commit

Permalink
noise
Browse files Browse the repository at this point in the history
  • Loading branch information
Tk420634 committed Aug 30, 2024
1 parent d8be0f9 commit d881df0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
5 changes: 4 additions & 1 deletion code/game/machinery/dance_machine_online.dm
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@
return
pendingsongurl = songinput
var/adminmessage = "<span class=\"admin\">[user.name] wants to play <a href=\"[pendingsongurl]\">[pendingsongurl]</a><br/>You can <a href='byond://?src=\ref[src];action=allow;url=[pendingsongurl]'>Allow</a> or <a href='byond://?src=\ref[src];action=deny;url=[pendingsongurl]'>Deny</a>.</span>"
for(var/admin in GLOB.admins.Copy())
for(var/client/admin in GLOB.admins.Copy())
to_chat(admin, adminmessage, confidential = TRUE)
if(admin.prefs.toggles & SOUND_ADMINHELP)
SEND_SOUND(admin, sound('sound/effects/direct_message_recieved.ogg'))
window_flash(admin, ignorepref = TRUE)

/obj/machinery/jukebox_online/Topic(href, href_list[])
if(pendingsongurl == href_list["url"])
Expand Down
9 changes: 4 additions & 5 deletions modular_splurt/code/modules/hilbertshotel/hilbertshotel.dm
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ GLOBAL_VAR_INIT(hhmysteryRoomNumber, 1337)
var/datum/map_template/hilbertshotel/apartment/oasis_one/oasis_one
var/datum/map_template/hilbertshotel/apartment/snowcabin_one/snowcabin_one
var/datum/map_template/hilbertshotel/apartment/hospital_one/hospital_one
var/datum/map_template/hilbertshotel/apartment/chess/thechess
var/datum/map_template/hilbertshotel/apartment/chessboard/thechess
//FB Maps End
var/datum/map_template/hilbertshotel/hotelRoomTemp
var/datum/map_template/hilbertshotel/empty/hotelRoomTempEmpty
Expand Down Expand Up @@ -716,6 +716,9 @@ There's always more room around every bend
Not all that's countable has an end..._
"}

/datum/map_template/hilbertshotel/apartment/chessboard
name = "Chess"
mappath = '_maps/templates/splurt_templates/hilbertshotel_templates/chess.dmm'

// Better SPLURT version of hilbert's
/datum/map_template/hilbertshotel
Expand Down Expand Up @@ -775,10 +778,6 @@ Not all that's countable has an end..._
name = "Hospital"
mappath = '_maps/templates/splurt_templates/hilbertshotel_templates/hospital.dmm'

/datum/map_template/hilbertshotel/apartment/chess
name = "Chess"
mappath = '_maps/templates/splurt_templates/hilbertshotel_templates/chess.dmm'

// Fluff - Misc
/obj/item/paper/fluff/hilbertshotel/welcomeletter
name = "Welcome Letter"
Expand Down

0 comments on commit d881df0

Please sign in to comment.