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
commit7350b88bf2bd2c8fbb579fa6e21f6e341df44b49 (patch)
tree78422746fe8ad53b0a58d7e0952ad6b100782715 /src/variables.h
parent6a2029f4f886777a96e22238dfabde430aed7e8c (diff)
downloadopenttd-7350b88bf2bd2c8fbb579fa6e21f6e341df44b49.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;