]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Remove useless line continuation chars
authorterencehill <piuntn@gmail.com>
Mon, 29 Jul 2019 12:34:29 +0000 (14:34 +0200)
committerterencehill <piuntn@gmail.com>
Mon, 29 Jul 2019 12:34:29 +0000 (14:34 +0200)
qcsrc/common/mutators/mutator/buffs/buffs.qh

index 7d4e583675b812169ee16ebc076b57f3973ee7e3..5f626bee95c38299327ff43bbca8e60ca2c73206 100644 (file)
@@ -35,10 +35,10 @@ CLASS(Buff, Pickup)
 ENDCLASS(Buff)
 
 STATIC_INIT(REGISTER_BUFFS) {
-    FOREACH(Buffs, true, {
-        it.m_itemid = BIT(it.m_id - 1); \
-        it.m_sprite = strzone(strcat("buff-", it.netname)); \
-    });
+       FOREACH(Buffs, true, {
+               it.m_itemid = BIT(it.m_id - 1);
+               it.m_sprite = strzone(strcat("buff-", it.netname));
+       });
 }
 
 #ifdef SVQC