From 0fef8b8019293a6173f4d09dabf7098659f2b357 Mon Sep 17 00:00:00 2001 From: Seth Scherer Date: Wed, 5 Jan 2022 15:27:06 -0500 Subject: [PATCH] Fixes admins being able to use the JMP verb as a new player (#63835) they should NOT be able to do this --- code/modules/admin/topic.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index ad1e6550651..e9e0252fa05 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -743,6 +743,8 @@ else if(href_list["adminplayerobservecoodjump"]) if(!isobserver(usr) && !check_rights(R_ADMIN)) return + if(isnewplayer(usr)) + return var/x = text2num(href_list["X"]) var/y = text2num(href_list["Y"])