Merge pull request #6862 from VOREStation/vplk-zoomy-skybox

Scale Skybox by client view size
This commit is contained in:
Aronai Sieyes
2020-03-16 10:01:50 -04:00
committed by GitHub
8 changed files with 45 additions and 12 deletions
+7
View File
@@ -1063,6 +1063,13 @@ mob/proc/yank_out_object()
/mob/proc/setEarDamage()
return
// Set client view distance (size of client's screen). Returns TRUE if anything changed.
/mob/proc/set_viewsize(var/new_view = world.view)
if (client && new_view != client.view)
client.view = new_view
return TRUE
return FALSE
//Throwing stuff
/mob/proc/toggle_throw_mode()