mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-10 01:57:01 +00:00
*Fixes the gaussian PRNG
*Fixes a minor mistake in num2hex *Fixes a bad call to num2hex which was causing data_core records to all have an ID of "000000". Fixes #583 *Rebalances dna modification to match the PRNG fixes. *Fixes cloning computer not copying b_type to data disks DNA modifier features: *Probability indicators for emitter settings *Info on last pulse operation *Cannot operate on dead subjects *UE/UI/SE spaced out more Modified code/__HELPERS/maths.dm Modified code/__HELPERS/type2type.dm Modified code/__HELPERS/unsorted.dm Modified code/datums/datacore.dm Modified code/game/dna.dm Modified code/game/machinery/computer/cloning.dm Modified code/game/machinery/computer/security.dm
This commit is contained in:
@@ -30,7 +30,7 @@
|
||||
else
|
||||
assignment = "Unassigned"
|
||||
|
||||
var/id = add_zero(num2hex(rand(1, 1.6777215E7)), 6) //this was the best they could come up with? A large random number? *sigh*
|
||||
var/id = num2hex(rand(1, 1.6777215E7),6) //this was the best they could come up with? A large random number? *sigh*
|
||||
|
||||
//General Record
|
||||
var/datum/data/record/G = new()
|
||||
|
||||
Reference in New Issue
Block a user