forked from github/server
disabling building-aging for the moment
This commit is contained in:
parent
3a1550c3f6
commit
fc770832d4
2 changed files with 5 additions and 3 deletions
|
@ -56,7 +56,10 @@ lc_age(struct attrib * a)
|
||||||
if (is_function(L, fname)) {
|
if (is_function(L, fname)) {
|
||||||
try {
|
try {
|
||||||
if (fparam) {
|
if (fparam) {
|
||||||
retval = luabind::call_function<int>(L, fname, *b, fparam);
|
#ifdef TUNNELS /* TODO: Why does this crash? */
|
||||||
|
std::string param(fparam);
|
||||||
|
retval = luabind::call_function<int>(L, fname, *b, param);
|
||||||
|
#endif
|
||||||
} else {
|
} else {
|
||||||
retval = luabind::call_function<int>(L, fname, *b);
|
retval = luabind::call_function<int>(L, fname, *b);
|
||||||
}
|
}
|
||||||
|
|
|
@ -72,8 +72,7 @@
|
||||||
<param name="globalreport" value="world"/>
|
<param name="globalreport" value="world"/>
|
||||||
<param name="rules.check_overload" value="1"/>
|
<param name="rules.check_overload" value="1"/>
|
||||||
</game>
|
</game>
|
||||||
<xi:include href="eressea/de/strings.xml"/>
|
<xi:include href="eressea/strings.xml"/>
|
||||||
<xi:include href="eressea/en/strings.xml"/>
|
|
||||||
<xi:include href="eressea/races.xml"/>
|
<xi:include href="eressea/races.xml"/>
|
||||||
<xi:include href="eressea/items-hse.xml"/>
|
<xi:include href="eressea/items-hse.xml"/>
|
||||||
<xi:include href="eressea/dungeons.xml"/>
|
<xi:include href="eressea/dungeons.xml"/>
|
||||||
|
|
Loading…
Reference in a new issue