Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tales of MajEyal
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
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
tome
Tales of MajEyal
Commits
263233a6
Commit
263233a6
authored
13 years ago
by
dg
Browse files
Options
Downloads
Patches
Plain Diff
fix
git-svn-id:
http://svn.net-core.org/repos/t-engine4@3425
51575b47-30f0-44d4-a5cc-537603b46e54
parent
15fb6046
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
game/modules/tome/data/zones/demon-plane-spell/grids.lua
+4
-2
4 additions, 2 deletions
game/modules/tome/data/zones/demon-plane-spell/grids.lua
with
4 additions
and
2 deletions
game/modules/tome/data/zones/demon-plane-spell/grids.lua
+
4
−
2
View file @
263233a6
...
...
@@ -28,8 +28,10 @@ newEntity{
if
not
game
.
level
.
allow_demon_plane_damage
then
return
end
local
DT
=
engine
.
DamageType
local
dam
=
DT
:
get
(
DT
.
DEMONFIRE
).
projector
(
game
.
level
.
plane_owner
,
x
,
y
,
DT
.
DEMONFIRE
,
game
.
level
.
demonfire_dam
or
1
)
if
dam
>
0
then
game
.
logPlayer
(
who
,
"The lava burns you!"
)
elseif
dam
<
0
then
game
.
logPlayer
(
who
,
"The lava heals you!"
)
end
if
dam
then
if
dam
>
0
then
game
.
logPlayer
(
who
,
"The lava burns you!"
)
elseif
dam
<
0
then
game
.
logPlayer
(
who
,
"The lava heals you!"
)
end
end
end
,
}
...
...
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