diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-07 13:39:49 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-07 13:39:49 +0000 |
commit | 244f68ca1df53201fd1ddd4d6beaf17b0e13c0e0 (patch) | |
tree | c188e5e2940d36d72ae8db9ae2c85e6fec02eb30 /src/plugins | |
parent | d7c7784e6328f5467b049e13d4bedaeaef57f495 (diff) | |
download | hercules-244f68ca1df53201fd1ddd4d6beaf17b0e13c0e0.tar.gz hercules-244f68ca1df53201fd1ddd4d6beaf17b0e13c0e0.tar.bz2 hercules-244f68ca1df53201fd1ddd4d6beaf17b0e13c0e0.tar.xz hercules-244f68ca1df53201fd1ddd4d6beaf17b0e13c0e0.zip |
- Added error message when attempting to use deprecated bonus bAspd.
- Added missing line terminator on a pair of ShowErrors in the sig plugin.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8660 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/sig.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/sig.c b/src/plugins/sig.c index 6f41bfdc2..7ddfaf2dc 100644 --- a/src/plugins/sig.c +++ b/src/plugins/sig.c @@ -27,13 +27,13 @@ PLUGIN_EVENTS_TABLE = { #if defined(_WIN32) || defined(MINGW)
int sig_init() {
- ShowError("sig: This plugin is not supported - Enable 'exchndl' instead!");
+ ShowError("sig: This plugin is not supported - Enable 'exchndl' instead!\n");
return 0;
}
int sig_final() { return 0; }
#elif defined (__NETBSD__) || defined (__FREEBSD__)
int sig_init() {
- ShowError("sig: This plugin is not supported!");
+ ShowError("sig: This plugin is not supported!\n");
return 0;
}
int sig_final() { return 0; }
|