LuaAudio: remove version numbers
authorWuzzy
Thu, 25 May 2023 13:06:10 +0000
changeset 2234 cc4c3628ae0e
parent 2233 fbe2095f05e4
child 2235 19ffaf4bf91a
LuaAudio: remove version numbers
LuaAudio.wiki
--- a/LuaAudio.wiki	Thu May 25 13:05:48 2023 +0000
+++ b/LuaAudio.wiki	Thu May 25 13:06:10 2023 +0000
@@ -12,7 +12,7 @@
 
 If you play a voice, by default the voice will respect an internal queue and might be played with an delay in order to prevent annoying voice overlapping. You can disable this behaviour and force Hedgewars to instantly play the voice by also setting `instaVoice` to `true`. Only use `instaVoice` when you really need it.
 
-== `PlayMusicSound(soundId)` (0.9.25) ==
+== `PlayMusicSound(soundId)` ==
 Plays a sound as replacement for the background music. The sound is played once. The main music is paused and the sound is played instead. The main background music does not resume automatically, so you should call `StopMusicSound` after a while.
 
 Example:
@@ -20,7 +20,7 @@
 PlayMusicSound(sndRideOfTheValkyries) -- Replace the background music the Ride of the Valkyries
 </code>
 
-== `StopMusicSound(soundId)` (0.9.25) ==
+== `StopMusicSound(soundId)` ==
 Stops the specified “music sound” (if it was still playing) and resumes the main background music.
 
 == `SetSoundMask(soundId, isMasked)` ==