mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-28 22:48:38 +01:00
Merge pull request #40 from VOREStation/weightvore
Uncomments weight code now that Cadence has added weight
This commit is contained in:
@@ -65,18 +65,16 @@
|
||||
M.adjustBruteLoss(2)
|
||||
M.adjustFireLoss(3)
|
||||
|
||||
/* POLARISTODO - Depends on weight and scale
|
||||
var/offset
|
||||
if (M.weight > 137)
|
||||
offset = 1 + ((M.weight - 137) / 137)
|
||||
if (M.weight < 137)
|
||||
offset = (137 - M.weight) / 137
|
||||
var/difference = owner.playerscale / M.playerscale
|
||||
var/difference = owner.size_multiplier / M.size_multiplier
|
||||
if(offset) // If any different than default weight, multiply the % of offset.
|
||||
owner.nutrition += offset*(10/difference)
|
||||
else
|
||||
owner.nutrition += (10/difference)
|
||||
*/
|
||||
|
||||
return
|
||||
|
||||
|
||||
Reference in New Issue
Block a user