summaryrefslogtreecommitdiff
path: root/src/variables.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-09-30 17:38:42 +0000
committerrubidium <rubidium@openttd.org>2007-09-30 17:38:42 +0000
commitff14665f6ebde59e8ef17d8f0e06e2d3e5aefd65 (patch)
tree78422746fe8ad53b0a58d7e0952ad6b100782715 /src/variables.h
parentc952f3d5eff35b04df91970e61ef1a50bac769ac (diff)
downloadopenttd-ff14665f6ebde59e8ef17d8f0e06e2d3e5aefd65.tar.xz
(svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
-Feature: possibility to disable exclusive rights and giving money. Both by skidd13.
Diffstat (limited to 'src/variables.h')
-rw-r--r--src/variables.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/variables.h b/src/variables.h
index 9d2b2e4a5..6e4fca1d2 100644
--- a/src/variables.h
+++ b/src/variables.h
@@ -244,6 +244,9 @@ struct Patches {
bool autoslope; ///< Allow terraforming under things.
bool mod_road_rebuild; ///< Roadworks remove unneccesary RoadBits
+
+ bool exclusive_rights; ///< allow buying exclusive rights
+ bool give_money; ///< allow giving other players money
};
VARDEF Patches _patches;