diff --git a/src/lua_hook.h b/src/lua_hook.h
index 4274f1f3c46d363ceb238af1d78e3e9c7267c9fa..0f84827942ad8c31bc6a0213bf1f008e3c3e3fdb 100644
--- a/src/lua_hook.h
+++ b/src/lua_hook.h
@@ -120,9 +120,7 @@ int  LUA_HookPlayerCanDamage(player_t *, mobj_t *);
 void LUA_HookPlayerQuit(player_t *, kickreason_t);
 int  LUA_HookTeamSwitch(player_t *, int newteam, boolean fromspectators, boolean tryingautobalance, boolean tryingscramble);
 int  LUA_HookViewpointSwitch(player_t *player, player_t *newdisplayplayer, boolean forced);
-#ifdef SEENAMES
 int  LUA_HookSeenPlayer(player_t *player, player_t *seenfriend);
-#endif
 int  LUA_HookShouldJingleContinue(player_t *, const char *musname);
 int  LUA_HookPlayerCmd(player_t *, ticcmd_t *);
 int  LUA_HookMusicChange(const char *oldname, struct MusicChange *);
diff --git a/src/lua_hooklib.c b/src/lua_hooklib.c
index 4143fbd8e6ac88ed12e6019ba3e9210edab0b4c5..3a63e446e59413f4a6dd25d7f78e2ed2a4b84e74 100644
--- a/src/lua_hooklib.c
+++ b/src/lua_hooklib.c
@@ -947,7 +947,6 @@ int LUA_HookViewpointSwitch(player_t *player, player_t *newdisplayplayer, boolea
 	return hook.status;
 }
 
-#ifdef SEENAMES
 int LUA_HookSeenPlayer(player_t *player, player_t *seenfriend)
 {
 	Hook_State hook;
@@ -962,7 +961,6 @@ int LUA_HookSeenPlayer(player_t *player, player_t *seenfriend)
 	}
 	return hook.status;
 }
-#endif // SEENAMES
 
 int LUA_HookShouldJingleContinue(player_t *player, const char *musname)
 {