From 49f43423c803b4cf14c17b54c4bb543fa347869a Mon Sep 17 00:00:00 2001 From: expwnent Date: Fri, 15 Aug 2014 09:40:49 -0400 Subject: [PATCH] Tweaks. --- dfhack.init-example | 7 ++----- scripts/log-region.lua | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/dfhack.init-example b/dfhack.init-example index c99937e09..891fbfa81 100644 --- a/dfhack.init-example +++ b/dfhack.init-example @@ -143,7 +143,7 @@ tweak advmode-contained tweak fast-trade # stop the right list in military->positions from resetting to top all the time -# tweak military-stable-assign #crashes in 0.40.08-r1 +tweak military-stable-assign # in same list, color units already assigned to squads in brown & green tweak military-color-assigned @@ -151,7 +151,7 @@ tweak military-color-assigned # tweak military-training # make crafted cloth items wear out with time like in old versions (bug 6003) -# tweak craft-age-wear #seems to crash in 0.40.08-r1 +tweak craft-age-wear # stop adamantine clothing from wearing out (bug 6481) #tweak adamantine-cloth-wear @@ -172,9 +172,6 @@ enable automaterial # Other interface improvement tools #enable dwarfmonitor mousequery autotrade buildingplan resume zone -# Auto Syndrome -#autoSyndrome enable - # allow the fortress bookkeeper to queue jobs through the manager stockflow enable diff --git a/scripts/log-region.lua b/scripts/log-region.lua index 9c1cc8874..1895336cb 100644 --- a/scripts/log-region.lua +++ b/scripts/log-region.lua @@ -27,7 +27,7 @@ else --civ_ent.name write_gamelog('Loaded '..df.global.world.cur_savegame.save_dir..', '..dfhack.TranslateName(worldname)..' ('..dfhack.TranslateName(worldname ,true)..') at coordinates ('..site.pos.x..','..site.pos.y..')'..NEWLINE.. - 'Loaded the fortress '..dfhack.TranslateName(site.name)..' ('..dfhack.TranslateName(site.name, true)..'), colonized by the group '..dfhack.TranslateName(fort_ent.name)..' ('..dfhack.TranslateName(fort_ent.name,true).. + 'Loaded the fortress '..dfhack.TranslateName(site.name)..' ('..dfhack.TranslateName(site.name, true)..'), colonized by the group '..(fort_end and dfhack.TranslateName(fort_ent.name) or '(nobody?)')..' ('..dfhack.TranslateName(fort_ent.name,true).. ') of the civilization '..dfhack.TranslateName(civ_ent.name)..' ('..dfhack.TranslateName(civ_ent.name,true)..').'..NEWLINE) end end