summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-02-07 00:23:37 -0200
committershennetsind <ind@henn.et>2013-02-07 00:23:37 -0200
commit2ae187d00651c406a7a1c0c1cbc1495566d1607b (patch)
tree5f0b7b18ee8d9c6750fe949658b68ca844561e97 /src
parent90eefa03faff925a3d91e6041c63965a6b39c1b3 (diff)
downloadhercules-2ae187d00651c406a7a1c0c1cbc1495566d1607b.tar.gz
hercules-2ae187d00651c406a7a1c0c1cbc1495566d1607b.tar.bz2
hercules-2ae187d00651c406a7a1c0c1cbc1495566d1607b.tar.xz
hercules-2ae187d00651c406a7a1c0c1cbc1495566d1607b.zip
Fixing mistake in modified source code headers
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src')
-rw-r--r--src/char/int_guild.c2
-rw-r--r--src/char/int_pet.c2
-rw-r--r--src/common/core.c2
-rw-r--r--src/common/mapindex.c2
-rw-r--r--src/common/sql.c2
-rw-r--r--src/common/sql.h2
-rw-r--r--src/login/login.c2
-rw-r--r--src/map/battle.c2
-rw-r--r--src/map/battle.h2
-rw-r--r--src/map/chrif.c2
-rw-r--r--src/map/clif.c2
-rw-r--r--src/map/elemental.c2
-rw-r--r--src/map/homunculus.c2
-rw-r--r--src/map/map.c2
-rw-r--r--src/map/map.h2
-rw-r--r--src/map/mercenary.c2
-rw-r--r--src/map/mob.c2
-rw-r--r--src/map/npc.c2
-rw-r--r--src/map/pc.c2
-rw-r--r--src/map/pc.h2
-rw-r--r--src/map/script.c2
-rw-r--r--src/map/skill.c2
-rw-r--r--src/map/status.c2
-rw-r--r--src/map/unit.c2
24 files changed, 24 insertions, 24 deletions
diff --git a/src/char/int_guild.c b/src/char/int_guild.c
index c18bf7d3c..e25ebd902 100644
--- a/src/char/int_guild.c
+++ b/src/char/int_guild.c
@@ -1,6 +1,6 @@
// Copyright (c) Hercules dev team, licensed under GNU GPL.
// See the LICENSE file
-// Portions Copyright (c) Athena dev team
+// Portions Copyright (c) Athena Dev Teams
#include "../common/cbasetypes.h"
#include "../common/mmo.h"
diff --git a/src/char/int_pet.c b/src/char/int_pet.c
index d9b0cf5ef..7a6c217f9 100644
--- a/src/char/int_pet.c
+++ b/src/char/int_pet.c
@@ -1,6 +1,6 @@
// Copyright (c) Hercules dev team, licensed under GNU GPL.
// See the LICENSE file
-// Portions Copyright (c) Athena dev team
+// Portions Copyright (c) Athena Dev Teams
#include "../common/mmo.h"
#include "../common/malloc.h"
diff --git a/src/common/core.c b/src/common/core.c
index b1714b7a5..42cdfa7cd 100644
--- a/src/common/core.c
+++ b/src/common/core.c
@@ -1,6 +1,6 @@
// Copyright (c) Hercules dev team, licensed under GNU GPL.
// See the LICENSE file
-// Portions Copyright (c) Athena dev team
+// Portions Copyright (c) Athena Dev Teams
#include "../common/mmo.h"
#include "../common/showmsg.h"
diff --git a/src/common/mapindex.c b/src/common/mapindex.c
index cea945ac0..685af641c 100644
--- a/src/common/mapindex.c
+++ b/src/common/mapindex.c
@@ -1,6 +1,6 @@
// Copyright (c) Hercules dev team, licensed under GNU GPL.
// See the LICENSE file
-// Portions Copyright (c) Athena dev team
+// Portions Copyright (c) Athena Dev Teams
#include "../common/mmo.h"
#include "../common/showmsg.h"
diff --git a/src/common/sql.c b/src/common/sql.c
index 73c4181d9..b842db46d 100644
--- a/src/common/sql.c
+++ b/src/common/sql.c
@@ -1,6 +1,6 @@
// Copyright (c) Hercules dev team, licensed under GNU GPL.
// See the LICENSE file
-// Portions Copyright (c) Athena dev team
+// Portions Copyright (c) Athena Dev Teams
#include "../common/cbasetypes.h"
#include "../common/malloc.h"
diff --git a/src/common/sql.h b/src/common/sql.h
index 5ac92665e..b7159ec90 100644
--- a/src/common/sql.h
+++ b/src/common/sql.h
@@ -1,6 +1,6 @@
// Copyright (c) Hercules dev team, licensed under GNU GPL.
// See the LICENSE file
-// Portions Copyright (c) Athena dev team
+// Portions Copyright (c) Athena Dev Teams
#ifndef _COMMON_SQL_H_
#define _COMMON_SQL_H_
diff --git a/src/login/login.c b/src/login/login.c
index 625e0f5c6..7f272e2a4 100644
--- a/src/login/login.c
+++ b/src/login/login.c
@@ -1,6 +1,6 @@
// Copyright (c) Hercules dev team, licensed under GNU GPL.
// See the LICENSE file
-// Portions Copyright (c) Athena dev team
+// Portions Copyright (c) Athena Dev Teams
#include "../common/core.h"
#include "../common/db.h"
diff --git a/src/map/battle.c b/src/map/battle.c
index f9748833f..2ad066d33 100644
--- a/src/map/battle.c
+++ b/src/map/battle.c
@@ -1,6 +1,6 @@
// Copyright (c) Hercules dev team, licensed under GNU GPL.
// See the LICENSE file
-// Portions Copyright (c) Athena dev team
+// Portions Copyright (c) Athena Dev Teams
#include "../common/cbasetypes.h"
#include "../common/timer.h"
diff --git a/src/map/battle.h b/src/map/battle.h
index 1354da78a..cd626cd6b 100644
--- a/src/map/battle.h
+++ b/src/map/battle.h
@@ -1,6 +1,6 @@
// Copyright (c) Hercules dev team, licensed under GNU GPL.
// See the LICENSE file
-// Portions Copyright (c) Athena dev team
+// Portions Copyright (c) Athena Dev Teams
#ifndef _BATTLE_H_
#define _BATTLE_H_
diff --git a/src/map/chrif.c b/src/map/chrif.c
index 3ad164b89..06eef0564 100644
--- a/src/map/chrif.c
+++ b/src/map/chrif.c
@@ -1,6 +1,6 @@
// Copyright (c) Hercules dev team, licensed under GNU GPL.
// See the LICENSE file
-// Portions Copyright (c) Athena dev team
+// Portions Copyright (c) Athena Dev Teams
#include "../common/cbasetypes.h"
#include "../common/malloc.h"
diff --git a/src/map/clif.c b/src/map/clif.c
index 8d5090c2c..6d9e57bd2 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -1,6 +1,6 @@
// Copyright (c) Hercules dev team, licensed under GNU GPL.
// See the LICENSE file
-// Portions Copyright (c) Athena dev team
+// Portions Copyright (c) Athena Dev Teams
#include "../common/cbasetypes.h"
#include "../common/socket.h"
diff --git a/src/map/elemental.c b/src/map/elemental.c
index f6c9eff84..33ef4d1b9 100644
--- a/src/map/elemental.c
+++ b/src/map/elemental.c
@@ -1,6 +1,6 @@
// Copyright (c) Hercules dev team, licensed under GNU GPL.
// See the LICENSE file
-// Portions Copyright (c) Athena dev team
+// Portions Copyright (c) Athena Dev Teams
#include "../common/cbasetypes.h"
#include "../common/malloc.h"
diff --git a/src/map/homunculus.c b/src/map/homunculus.c
index c94a95775..92868c7c7 100644
--- a/src/map/homunculus.c
+++ b/src/map/homunculus.c
@@ -1,6 +1,6 @@
// Copyright (c) Hercules dev team, licensed under GNU GPL.
// See the LICENSE file
-// Portions Copyright (c) Athena dev team
+// Portions Copyright (c) Athena Dev Teams
#include "../common/cbasetypes.h"
#include "../common/malloc.h"
diff --git a/src/map/map.c b/src/map/map.c
index d2cc9c4a9..6f9401dad 100644
--- a/src/map/map.c
+++ b/src/map/map.c
@@ -1,6 +1,6 @@
// Copyright (c) Hercules dev team, licensed under GNU GPL.
// See the LICENSE file
-// Portions Copyright (c) Athena dev team
+// Portions Copyright (c) Athena Dev Teams
#include "../common/cbasetypes.h"
#include "../common/core.h"
diff --git a/src/map/map.h b/src/map/map.h
index 06995024f..73f8e694b 100644
--- a/src/map/map.h
+++ b/src/map/map.h
@@ -1,6 +1,6 @@
// Copyright (c) Hercules dev team, licensed under GNU GPL.
// See the LICENSE file
-// Portions Copyright (c) Athena dev team
+// Portions Copyright (c) Athena Dev Teams
#ifndef _MAP_H_
#define _MAP_H_
diff --git a/src/map/mercenary.c b/src/map/mercenary.c
index c3fb8e3e2..a97651b87 100644
--- a/src/map/mercenary.c
+++ b/src/map/mercenary.c
@@ -1,6 +1,6 @@
// Copyright (c) Hercules dev team, licensed under GNU GPL.
// See the LICENSE file
-// Portions Copyright (c) Athena dev team
+// Portions Copyright (c) Athena Dev Teams
#include "../common/cbasetypes.h"
#include "../common/malloc.h"
diff --git a/src/map/mob.c b/src/map/mob.c
index aceebc506..4f28923e9 100644
--- a/src/map/mob.c
+++ b/src/map/mob.c
@@ -1,6 +1,6 @@
// Copyright (c) Hercules dev team, licensed under GNU GPL.
// See the LICENSE file
-// Portions Copyright (c) Athena dev team
+// Portions Copyright (c) Athena Dev Teams
#include "../common/cbasetypes.h"
#include "../common/timer.h"
diff --git a/src/map/npc.c b/src/map/npc.c
index 383cd031a..ba476e810 100644
--- a/src/map/npc.c
+++ b/src/map/npc.c
@@ -1,6 +1,6 @@
// Copyright (c) Hercules dev team, licensed under GNU GPL.
// See the LICENSE file
-// Portions Copyright (c) Athena dev team
+// Portions Copyright (c) Athena Dev Teams
#include "../common/cbasetypes.h"
#include "../common/timer.h"
diff --git a/src/map/pc.c b/src/map/pc.c
index 6e24d7d49..0dd210394 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -1,6 +1,6 @@
// Copyright (c) Hercules dev team, licensed under GNU GPL.
// See the LICENSE file
-// Portions Copyright (c) Athena dev team
+// Portions Copyright (c) Athena Dev Teams
#include "../common/cbasetypes.h"
#include "../common/core.h" // get_svn_revision()
diff --git a/src/map/pc.h b/src/map/pc.h
index ac1950a69..6e56a612e 100644
--- a/src/map/pc.h
+++ b/src/map/pc.h
@@ -1,6 +1,6 @@
// Copyright (c) Hercules dev team, licensed under GNU GPL.
// See the LICENSE file
-// Portions Copyright (c) Athena dev team
+// Portions Copyright (c) Athena Dev Teams
#ifndef _PC_H_
#define _PC_H_
diff --git a/src/map/script.c b/src/map/script.c
index b4f0a5d9b..a6d588113 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -1,6 +1,6 @@
// Copyright (c) Hercules dev team, licensed under GNU GPL.
// See the LICENSE file
-// Portions Copyright (c) Athena dev team
+// Portions Copyright (c) Athena Dev Teams
//#define DEBUG_DISP
//#define DEBUG_DISASM
diff --git a/src/map/skill.c b/src/map/skill.c
index 2cc3ed1ab..972aa8129 100644
--- a/src/map/skill.c
+++ b/src/map/skill.c
@@ -1,6 +1,6 @@
// Copyright (c) Hercules dev team, licensed under GNU GPL.
// See the LICENSE file
-// Portions Copyright (c) Athena dev team
+// Portions Copyright (c) Athena Dev Teams
#include "../common/cbasetypes.h"
#include "../common/timer.h"
diff --git a/src/map/status.c b/src/map/status.c
index 8fd48aefc..0ee993de4 100644
--- a/src/map/status.c
+++ b/src/map/status.c
@@ -1,6 +1,6 @@
// Copyright (c) Hercules dev team, licensed under GNU GPL.
// See the LICENSE file
-// Portions Copyright (c) Athena dev team
+// Portions Copyright (c) Athena Dev Teams
#include "../common/cbasetypes.h"
#include "../common/timer.h"
diff --git a/src/map/unit.c b/src/map/unit.c
index 45aca7d41..1d37704e0 100644
--- a/src/map/unit.c
+++ b/src/map/unit.c
@@ -1,6 +1,6 @@
// Copyright (c) Hercules dev team, licensed under GNU GPL.
// See the LICENSE file
-// Portions Copyright (c) Athena dev team
+// Portions Copyright (c) Athena Dev Teams
#include "../common/showmsg.h"
#include "../common/timer.h"