Skip to content

Commit

Permalink
Bugfix - Typo
Browse files Browse the repository at this point in the history
Missed the comma's when wrapping the declared vars into the table declaration.
  • Loading branch information
polarathene committed Oct 24, 2016
1 parent e1da1f9 commit ae72a0c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions biglobby/lua/lib/managers/_achievementmanager.lua
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
-- Disable achievement progress if lobby size is greater than 4 players.
local orig__AchievmentManager = {
award = AchievmentManager.award
_give_reward = AchievmentManager._give_reward
award_progress = AchievmentManager.award_progress
award_steam = AchievmentManager.award_steam
award = AchievmentManager.award,
_give_reward = AchievmentManager._give_reward,
award_progress = AchievmentManager.award_progress,
award_steam = AchievmentManager.award_steam,
steam_unlock_result = AchievmentManager.steam_unlock_result
}

Expand Down

0 comments on commit ae72a0c

Please sign in to comment.