mob/verb/show_world_sav()
var/savefile/S = new("saves/world.sav")
usr << S.ExportText("")
Problem description:
When I try to open a previously modified save with that verb, it will return nothing. Is it possible that the save is already being accessed and can thus not be opened again? Otherwise, it would have to delete itself for some mysterious reason.