forked from github/server
"Probleme mit Weihnachtsbäumen"
This commit is contained in:
parent
8bdfd086f9
commit
67e14ee50d
1 changed files with 9 additions and 3 deletions
|
@ -14,8 +14,6 @@ function update_xmas2006()
|
||||||
if season == "calendar::winter" then
|
if season == "calendar::winter" then
|
||||||
print("it is " .. season .. ", the christmas trees do their magic")
|
print("it is " .. season .. ", the christmas trees do their magic")
|
||||||
local msg = message("xmastree_effect")
|
local msg = message("xmastree_effect")
|
||||||
local nextseason = get_season(turn-1)
|
|
||||||
local clear = (nextseason ~= "calendar::winter")
|
|
||||||
for r in regions() do
|
for r in regions() do
|
||||||
if r:get_key("xm06") then
|
if r:get_key("xm06") then
|
||||||
trees = r:get_resource("tree")
|
trees = r:get_resource("tree")
|
||||||
|
@ -24,7 +22,15 @@ function update_xmas2006()
|
||||||
msg:send_region(r)
|
msg:send_region(r)
|
||||||
end
|
end
|
||||||
if clear then
|
if clear then
|
||||||
-- we celebrate knut and kick out the trees.
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
else
|
||||||
|
local prevseason = get_season(turn-1)
|
||||||
|
if prevseason == "calendar::winter" then
|
||||||
|
-- we celebrate knut and kick out the trees.
|
||||||
|
for r in regions() do
|
||||||
|
if r:get_key("xm06") then
|
||||||
r:set_key("xm06", false)
|
r:set_key("xm06", false)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue