1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-09-29 22:56:07 -04:00

adding a ds1 version setter/getter

This commit is contained in:
gravestench 2021-03-30 10:35:56 -07:00
parent a3cb024b49
commit 66435a264e

View File

@ -674,3 +674,17 @@ func (ds1 *DS1) encodeNPCs(sw *d2datautils.StreamWriter) {
}
}
}
// Version returns the ds1 version
func (ds1 *DS1) Version() int {
return int(ds1.version)
}
// SetVersion sets the ds1 version, can not be negative.
func (ds1 *DS1) SetVersion(v int) {
if v < 0 {
v = 0
}
ds1.version = ds1version(v)
}