Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tales of MajEyal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Otowa Kotori
Tales of MajEyal
Commits
0b54944d
Commit
0b54944d
authored
5 years ago
by
DarkGod
Browse files
Options
Downloads
Patches
Plain Diff
Auto-bugreports will now include the game version a character was MADE in
parent
a5c29557
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
game/engines/default/engine/dialogs/ShowErrorStack.lua
+3
-0
3 additions, 0 deletions
game/engines/default/engine/dialogs/ShowErrorStack.lua
game/modules/tome/class/Game.lua
+5
-0
5 additions, 0 deletions
game/modules/tome/class/Game.lua
with
8 additions
and
0 deletions
game/engines/default/engine/dialogs/ShowErrorStack.lua
+
3
−
0
View file @
0b54944d
...
...
@@ -29,6 +29,9 @@ module(..., package.seeall, class.inherit(Dialog))
function
_M
:
init
(
errs
)
local
beta
=
engine
.
version_hasbeta
()
if
game
.
getPlayer
and
game
:
getPlayer
(
true
)
and
game
:
getPlayer
(
true
).
__created_in_version
then
table.insert
(
errs
,
1
,
"Game version (character creation): "
..
game
:
getPlayer
(
true
).
__created_in_version
)
end
table.insert
(
errs
,
1
,
"Game version: "
..
game
.
__mod_info
.
version_name
..
(
beta
and
"-"
..
beta
or
""
))
local
addons
=
{}
for
name
,
data
in
pairs
(
game
.
__mod_info
.
addons
or
{})
do
...
...
This diff is collapsed.
Click to expand it.
game/modules/tome/class/Game.lua
+
5
−
0
View file @
0b54944d
...
...
@@ -231,6 +231,11 @@ function _M:newGame()
if
config
.
settings
.
cheat
then
self
.
player
.
__cheated
=
true
end
if
game
.
__mod_info
then
local
beta
=
engine
.
version_hasbeta
()
self
.
player
.
__created_in_version
=
game
.
__mod_info
.
version_name
..
(
beta
and
"-"
..
beta
or
""
)
end
self
.
player
:
recomputeGlobalSpeed
()
self
:
rebuildCalendar
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment