This commit is contained in:
Archie
2021-06-23 02:09:06 -03:00
parent 3e7c52a7d3
commit 07d839c5a7
+1 -1
View File
@@ -72,7 +72,7 @@ SUBSYSTEM_DEF(jukeboxes)
var/list/L = splittext(S,"+")
T.song_name = L[1]
T.song_length = text2num(L[2])*10 //We multiply it by ten because the system requires it in deciseconds
T.song_beat = (text2num(L[3])/6) //We divide it by six because it requires the Beats per seconds value, but in deciseconds. (Result/60) * 10)
T.song_beat = round(text2num(L[3])/6) //We divide it by six because it requires the Beats per seconds value, but in deciseconds. (Result/60) * 10)
T.song_associated_id = songID
songs |= T
songID++