Turn SellEnabled in the [EconomyModule] on by default.

This only provides enough functionality to allow operations for no money (e.g. sell for $0).
0.7.2-post-fixes
Justin Clark-Casey (justincc) 2011-11-17 23:53:25 +00:00
parent e31d7fe424
commit b107a8ec2a
2 changed files with 16 additions and 15 deletions

View File

@ -515,19 +515,17 @@
[Economy]
;; The economy module is not enabled by default and there is no easy,
;; menu controlled way to do this. To enabled this module, insert
;; economymodule = BetaGridLikeMoneyModule
;; into the startup section (at the top of this file).
;; Then configure the options below as needed.
; The default economy module only implements just enough to allow free actions (transfer of objects, etc).
; There is no intention to implement anything further in core OpenSimulator.
; This functionality has to be provided by third party modules.
;; Enables selling things for $0
; SellEnabled = "false"
;; Enables selling things for $0. Default is true.
; SellEnabled = true
;; Money Unit fee to upload textures, animations etc
;; Money Unit fee to upload textures, animations etc. Default is 0.
; PriceUpload = 0
;; Money Unit fee to create groups
;; Money Unit fee to create groups. Default is 0.
; PriceGroupCreate = 0

View File

@ -1081,15 +1081,18 @@
[Economy]
; These economy values get used in the BetaGridLikeMoneyModule. - This module is for demonstration only -
; The default economy module only implements just enough to allow free actions (transfer of objects, etc).
; There is no intention to implement anything further in core OpenSimulator.
; This functionality has to be provided by third party modules.
; Enables selling things for $0
SellEnabled = "false"
;; Enables selling things for $0. Default is true.
SellEnabled = true
; Money Unit fee to upload textures, animations etc
PriceUpload = 0
;; Money Unit fee to upload textures, animations etc. Default is 0.
PriceUpload = 0
; Money Unit fee to create groups
PriceGroupCreate = 0
;; Money Unit fee to create groups. Default is 0.
PriceGroupCreate = 0
; We don't really know what the rest of these values do. These get sent to the client
; These taken from Agni at a Public Telehub. Change at your own risk.