mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-15 21:46:14 +00:00
12 lines
236 B
Lua
12 lines
236 B
Lua
local carryover = wesnoth.require("carryover_gold.lua")
|
|
|
|
wesnoth.game_events.add {
|
|
name = "scenario_end",
|
|
id = "carryover_gold",
|
|
first_time_only = false,
|
|
priority = -1000,
|
|
action = function()
|
|
carryover.do_carryover_gold()
|
|
end
|
|
}
|