Skip to content

Commit

Permalink
fix: GetGameTime parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
Yehonal committed Dec 28, 2020
1 parent 44c16be commit beee63b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion FeedbackUI.lua
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,8 @@ function FeedbackUI_InfoTableToJSON(infoTable)
local weekday, month, day, year = CalendarGetDate();
infoTable["reportCalendar"] = year .. "-" .. month .. "-" .. day
infoTable["reportDate"] = date()
infoTable["reportGameTime"] = GetGameTime()
local hours,minutes = GetGameTime();
infoTable["reportGameTime"] = hours..":"..minutes

infoTable["reportSubjectId"] = g_FeedbackUI_feedbackVarsCustom.reportSubjectId
infoTable["reportSubjectType"] = g_FeedbackUI_feedbackVarsCustom.reportSubjectType
Expand Down

0 comments on commit beee63b

Please sign in to comment.