diff --git a/code/_globalvars/lists/flavor_misc.dm b/code/_globalvars/lists/flavor_misc.dm index 71b013826a7..32d5ed5733c 100644 --- a/code/_globalvars/lists/flavor_misc.dm +++ b/code/_globalvars/lists/flavor_misc.dm @@ -73,7 +73,7 @@ GLOBAL_PROTECT(borg_brain_choices) //Due to database reasons, the name should be 16 characters long maximum GLOBAL_LIST_INIT(pda_ringtone_choices, list("beep" = 'sound/machines/twobeep.ogg', "boop" = 'sound/machines/boop.ogg', - "electronic" = 'sound/machines/notif1.ogg', + "blup" = 'sound/misc/blup.ogg', "chime" = 'sound/machines/notif2.ogg', "slip" = 'sound/misc/slip.ogg', "honk" = 'sound/items/bikehorn.ogg', diff --git a/sound/misc/blup.ogg b/sound/misc/blup.ogg new file mode 100644 index 00000000000..a777496c129 Binary files /dev/null and b/sound/misc/blup.ogg differ diff --git a/tools/pr_sql/28362/pda_ringtone_update.sql b/tools/pr_sql/28362/pda_ringtone_update.sql new file mode 100644 index 00000000000..dd02d50ff35 --- /dev/null +++ b/tools/pr_sql/28362/pda_ringtone_update.sql @@ -0,0 +1,3 @@ +UPDATE characters +SET pda_ringtone = 'blup' +WHERE pda_ringtone = 'electronic'; \ No newline at end of file