mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-16 20:32:14 +00:00
Unified most of the procs into one definition, so there are no duplicate around the codebase. Marked some of the above as overridable if a good enough case can be made for them (eg. external dependency or unlikely to be used).
16 lines
297 B
Plaintext
16 lines
297 B
Plaintext
|
|
// These break the lighting system, comment out for now until
|
|
// someone can be arsed to fix it.
|
|
/*
|
|
/client/verb/spinleft()
|
|
set name = "Spin View CCW"
|
|
set category = "OOC"
|
|
dir = turn(dir, 90)
|
|
|
|
/client/verb/spinright()
|
|
set name = "Spin View CW"
|
|
set category = "OOC"
|
|
dir = turn(dir, -90)
|
|
|
|
*/
|