Skip to content

Commit

Permalink
removed loadfx() from buildAbilityInfo()
Browse files Browse the repository at this point in the history
  • Loading branch information
Maciek committed Nov 17, 2015
1 parent 7d89508 commit 82c6d58
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion deathrun_dev/braxi/_mod.gsc
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,9 @@ buildAbilityInfo()
level.abilityInfo[id]["codeName"] = tableLookup( tableName, 0, idx, 3 );
level.abilityInfo[id]["shader"] = tableLookup( tableName, 0, idx, 4 );
level.abilityInfo[id]["name"] = tableLookup( tableName, 0, idx, 5 );
level.abilityInfo[id]["desc"] = loadFx( tableLookup( tableName, 0, idx, 6 ) );
level.abilityInfo[id]["desc"] = tableLookup( tableName, 0, idx, 6 );

// precacheString( level.abilityInfo[id]["desc"] );
precacheShader( level.abilityInfo[id]["shader"] );
level.numAbilities++;
}
Expand Down

0 comments on commit 82c6d58

Please sign in to comment.