Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2011-10-02 16:12:30 +0000
committerStijn Buys <ingar@osirion.org>2011-10-02 16:12:30 +0000
commitc46e296e11a454be910ae3850e40d7e0343721bd (patch)
tree0c43532d23eeed0ffe9f7b64d6f85660e4108b0b /src
parent84eab812554d55f57f592d9af54c8c4b9b98a651 (diff)
Corrected a bug where setting the jumpgate template radius wouldn't work.
Diffstat (limited to 'src')
-rw-r--r--src/game/base/game.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/base/game.cc b/src/game/base/game.cc
index f49e9d9..7e3a9c5 100644
--- a/src/game/base/game.cc
+++ b/src/game/base/game.cc
@@ -1160,7 +1160,7 @@ bool Game::load_zone(core::Zone *zone)
jumppoint = new JumpGate();
entity = jumppoint;
jumppoint->set_zone(zone);
- jumppoint->set_radius(0);
+ //jumppoint->set_radius(0);
count ++;
} else if (zoneini.got_section("jumppoint")) {