From cc1574464b8f98fadf6524655ef1d1d60a7a3212 Mon Sep 17 00:00:00 2001 From: helixhorned Date: Thu, 28 Nov 2013 21:17:56 +0000 Subject: [PATCH] LunaCON: fix assignment to projectile sound/bsound/isound. git-svn-id: https://svn.eduke32.com/eduke32@4177 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/source/lunatic/con_lang.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/polymer/eduke32/source/lunatic/con_lang.lua b/polymer/eduke32/source/lunatic/con_lang.lua index 8c409b7bb..c60862230 100644 --- a/polymer/eduke32/source/lunatic/con_lang.lua +++ b/polymer/eduke32/source/lunatic/con_lang.lua @@ -748,8 +748,8 @@ local ProjectileLabels = { range = PROJ".range", flashcolor = PROJ".flashcolor", spawns = { PROJ".spawns", PROJ":set_spawns(%%s)" }, - sound = PROJ".sound", - isound = PROJ".isound", + sound = { PROJ".sound", PROJ":set_sound(%%s)" }, + isound = { PROJ".isound", PROJ":set_isound(%%s)" }, vel = PROJ".vel", decal = { PROJ".decal", PROJ":set_decal(%%s)" }, trail = { PROJ".trail", PROJ":set_trail(%%s)" }, @@ -757,7 +757,7 @@ local ProjectileLabels = { drop = PROJ".drop", offset = PROJ".offset", bounces = PROJ".bounces", - bsound = PROJ".bsound", + bsound = { PROJ".bsound", PROJ":set_bsound(%%s)" }, toffset = PROJ".toffset", extra = PROJ".extra", extra_rand = PROJ".extra_rand",