You've already forked Arcturus-Morningstar-Extended
mirror of
https://github.com/duckietm/Arcturus-Morningstar-Extended.git
synced 2026-06-19 15:06:19 +00:00
56161d36b5
-- Rebug Football Physics -- To use rebug football physics on a ball, set its interaction_type to 'rebug_football'. -- The default 'football' interaction uses the standard physics. -- -- Example: Change all footballs to use rebug physics: -- UPDATE items_base SET interaction_type = 'rebug_football' WHERE interaction_type = 'football'; -- -- Example: Change a specific ball item to use rebug physics: -- UPDATE items_base SET interaction_type = 'rebug_football' WHERE id = <item_base_id>; -- -- To revert back to default physics: -- UPDATE items_base SET interaction_type = 'football' WHERE interaction_type = 'rebug_football';