diff --git a/code/modules/client/edge_sliding/move_loop.dm b/code/modules/client/edge_sliding/move_loop.dm index 3c14065cd1f..270556eebea 100644 --- a/code/modules/client/edge_sliding/move_loop.dm +++ b/code/modules/client/edge_sliding/move_loop.dm @@ -4,7 +4,7 @@ move_dir = 0 //keep track of the direction the player is currently trying to move in. true_dir = 0 keypresses = 0 - CAN_MOVE_DIAGONALLY = 0 + CAN_MOVE_DIAGONALLY = TRUE //rebind your interface so that your north/south/east/west keypresses are bound to: //keydown: MoveKey [Direction] 1 diff --git a/code/modules/mob/dead/observer/login.dm b/code/modules/mob/dead/observer/login.dm index 2d6bbcabd0d..8ae66bb79cc 100644 --- a/code/modules/mob/dead/observer/login.dm +++ b/code/modules/mob/dead/observer/login.dm @@ -1,14 +1,14 @@ /mob/dead/observer/Login() ..() observers += src - + client.show_popup_menus = TRUE if(src.check_rights(R_ADMIN|R_FUN)) to_chat(src, "You are now an admin ghost. Think of yourself as an AI that doesn't show up anywhere and cannot speak. You can access any console or machine by standing next to it and clicking on it. Abuse of this privilege may result in hilarity or removal of your flags, so caution is recommended.") if(client) - client.CAN_MOVE_DIAGONALLY = 1 + client.CAN_MOVE_DIAGONALLY = TRUE /mob/dead/observer/MouseDrop(atom/over) if(!usr || !over) diff --git a/code/modules/mob/login.dm b/code/modules/mob/login.dm index 674ebee70e3..e9ec72d2a5c 100644 --- a/code/modules/mob/login.dm +++ b/code/modules/mob/login.dm @@ -122,7 +122,7 @@ update_colour() if(client) - client.CAN_MOVE_DIAGONALLY = 0 + client.CAN_MOVE_DIAGONALLY = TRUE if(iscluwnebanned(src) && (timeofdeath > 0 || !iscluwne(src))) log_admin("Cluwnebanned player [key_name(src)] attempted to join and was kicked.")