mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-01-30 10:53:24 +00:00
* upports server maint subsystem * fix runtime in admin z narrate * . * sorts them verbs * . * . * Update code/controllers/subsystems/statpanel.dm Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com> * Update code/controllers/subsystems/server_maint.dm Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com> --------- Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com>
15 lines
237 B
Plaintext
15 lines
237 B
Plaintext
|
|
/client/New()
|
|
..()
|
|
dir = NORTH
|
|
|
|
/client/verb/spinleft()
|
|
set name = "Spin View CCW"
|
|
set category = "OOC.Game"
|
|
dir = turn(dir, 90)
|
|
|
|
/client/verb/spinright()
|
|
set name = "Spin View CW"
|
|
set category = "OOC.Game"
|
|
dir = turn(dir, -90)
|