driving in masses (#9915)

This commit is contained in:
Mythril382 2024-06-03 01:20:17 +08:00 committed by GitHub
parent af6db8d092
commit 84774a0a80
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -146,6 +146,11 @@ public class ContentParser{
readFields(result, data); readFields(result, data);
return result; return result;
}); });
put(MassDriverBolt.class, (type, data) -> {
MassDriverBolt result = (MassDriverBolt)make(MassDriverBolt.class);
readFields(result, data);
return result;
});
put(AmmoType.class, (type, data) -> { put(AmmoType.class, (type, data) -> {
//string -> item //string -> item
//if liquid ammo support is added, this should scan for liquids as well //if liquid ammo support is added, this should scan for liquids as well