mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-29 19:52:12 +00:00
Shift middle click locks your direction again Spacepods now move again(literally one letter fixed this) Holster hotkey is back!(H to holster and unholster) Hotkey Toggle button has been removed from the bottom bar and verbs
8 lines
253 B
Plaintext
8 lines
253 B
Plaintext
/mob
|
|
var/datum/focus //What receives our keyboard inputs. src by default
|
|
|
|
/mob/proc/set_focus(datum/new_focus)
|
|
if(focus == new_focus)
|
|
return
|
|
focus = new_focus
|
|
reset_perspective(focus) //Maybe this should be done manually? You figure it out, reader |