3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-10 22:19:31 +01:00

Make ERR_CANNOT_RESUME use RPL_NONE numeric

This commit is contained in:
Daniel Oaks 2018-02-04 21:25:08 +10:00
parent ca6a162696
commit 3561046bec

View File

@ -195,6 +195,8 @@ const (
ERR_NOLANGUAGE = "982" ERR_NOLANGUAGE = "982"
// draft numerics // draft numerics
// these haven't been assigned actual codes, so we use RPL_NONE's code (300),
// since RPL_NONE is intended to be used when testing / debugging / etc features.
ERR_CANNOT_RESUME = "999" ERR_CANNOT_RESUME = "300"
) )