summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2025-05-05 18:00:50 +0100
committerSadie Powell <sadie@witchery.services>2025-05-05 21:11:51 +0100
commit937404e3118f10735875ff45a658facbf77e984d (patch)
tree4d795ce66b449005015785448498a85fe92920ab /data
parentc5ad774ce5dd51ea2e6e09374901f583b9857d7f (diff)
Optimise the maths for the jsonrpc oversize integer workaround.
Diffstat (limited to 'data')
-rw-r--r--data/modules.example.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/data/modules.example.conf b/data/modules.example.conf
index 93aa0df54..b6c86871d 100644
--- a/data/modules.example.conf
+++ b/data/modules.example.conf
@@ -814,14 +814,14 @@ module
* The maximum number of bits an integer can be have in its native type.
*
* By default Anope will emit integers as their native JSON type. If you are
- * using JavaScript (which has 56 bit integers) or another language with
+ * using JavaScript (which has 53 bit integers) or another language with
* native integer types smaller than 64 bits you may need to limit the size
* of integers emitted by Anope.
*
* If this is enabled a string will be used for values outside of the range
* supported by the native data type.
*/
- #integer_bits = 56
+ #integer_bits = 53
/* Web service to use. Requires httpd. */
server = "httpd/main"